我正在尝试为智能手表编写一个模拟你的心跳的应用程序,所以它需要能够在15到0.5-0.3秒的时间间隔内振动,持续时间为75ms。
当应用程序进入环境模式或开始进入全黑屏时,它也需要这样做。我不关心功耗或其他什么,它应该能够运行20-30分钟,没有其他。
在我正在开发的Moto360上,环境模式会变成一个完整的黑屏,如果你不把手表放在某个位置,一旦它进入黑屏,振动就会停止,所以我需要一个解决黑屏的方法,除非有一种方法可以让手表停止进入黑屏,我不知道。
当只使用onEnterAmbient等事件时,手表会停止振动,当你因为进入黑屏而没有保持在正确的角度时,而且振动并不总是一致的,因为必须在进入/更新时再次调用vibrator.vibrate()方法,等等,所以它通常会导致振动模式中的小不一致,这应该避免。所以我认为使用ambientmode的方法不起作用。
这是之前的代码:
[...]
private long[] vibrationPattern_StandardPulse = {0, 75, 1000};
private long[] vibrationPattern_AcceleratedPulse = {0, 75, 600};
[...]
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setAmbientEnabled();
mContainerView = (BoxInsetLayout) findViewById(R.id.container);
vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
[...]
@Override
public void onEnterAmbient(Bundle ambientDetails) {
super.onEnterAmbient(ambientDetails);
keepVibrating();
}
@Override
public void onUpdateAmbient() {
super.onUpdateAmbient();
keepVibrating();
}
@Override
public void onExitAmbient() {
super.onExitAmbient();
keepVibrating();
[...]
public void keepVibrating() {
if (standardPulse) {
vibrator.vibrate(vibrationPattern_StandardPulse, 0);
} else {
vibrator.vibrate(vibrationPattern_AcceleratedPulse, 0);
}
}
[...]
所以我又用警报管理器试了一次,(坚持这个链接:https://developer.android.com/training/wearables/apps/always-on.html#UpdateContent)能够在黑屏时也发送振动,但事实证明,闹钟管理器的计时器不能设置为如此小的间隔?它每隔5秒才震动一次,无论在黑屏、正常模式还是环境模式下,都应该震动1秒或更少。
代码:protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setAmbientEnabled();
mAmbientStateAlarmManager =
(AlarmManager) getSystemService(Context.ALARM_SERVICE);
Intent ambientStateIntent =
new Intent(getApplicationContext(), MainActivity.class);
mAmbientStatePendingIntent = PendingIntent.getActivity(
getApplicationContext(),
0,
ambientStateIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
mContainerView = (BoxInsetLayout) findViewById(R.id.container);
//mClockView = (TextView) findViewById(R.id.clock);
vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
[...]}
@Override
public void onNewIntent(Intent intent) {
super.onNewIntent(intent);
setIntent(intent);
refreshDisplayAndSetNextUpdate();
}
private long AMBIENT_INTERVAL_MS = 0;
private void refreshDisplayAndSetNextUpdate() {
if (standardPulse) {
AMBIENT_INTERVAL_MS = 1000;
} else {
AMBIENT_INTERVAL_MS = 600;
}
if (isAmbient()) {
// Implement data retrieval and update the screen for ambient mode
vibrator.vibrate(75);
} else {
// Implement data retrieval and update the screen for interactive mode
vibrator.vibrate(75);
}
long timeMs = System.currentTimeMillis();
// Schedule a new alarm
if (isAmbient()) {
// Calculate the next trigger time
long triggerTimeMs = timeMs + AMBIENT_INTERVAL_MS;
mAmbientStateAlarmManager.setExact(
AlarmManager.RTC_WAKEUP,
triggerTimeMs,
mAmbientStatePendingIntent);
} else {
// Calculate the next trigger time for interactive mode
long triggerTimeMs = timeMs + AMBIENT_INTERVAL_MS;
mAmbientStateAlarmManager.setExact(
AlarmManager.RTC_WAKEUP,
triggerTimeMs,
mAmbientStatePendingIntent);
}
}
RefreshUpdateAndSetNextAlarm随后也在onEnterAmbient事件等中被调用,但不像它应该的那样工作。在智能手表上,尤其是在Moto 360上,有没有办法做到这些?
也许如果我通过messageAPI不断地从智能手机发送消息并将它们设置为紧急?
解决方案是使用CPU Wakelock:
PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
PowerManager.WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
"MyWakelockTag");
wakeLock.acquire();
和屏幕保持on-Flag:
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);