1

我正在尝试为智能手表编写一个模拟您的心跳的应用程序,因此它需要能够以 1 秒到大约 0.5-0.3 秒的时间间隔振动,持续时间为 75 毫秒。

当应用程序进入环境模式或开始全黑屏时,它也需要这样做。我不在乎功耗或其他什么,它应该能够运行 20-30 分钟,仅此而已。

在我正在开发的Moto360上,环境模式会变成全黑屏,如果你不将手表保持在某个位置,一旦它进入黑屏,振动就会停止,所以我需要一个解决方案这也适用于黑屏,除非有办法停止手表,进入黑屏,我不知道。

当只处理 onEnterAmbient 等事件时,手表停止振动,当你因为进入黑屏而没有以正确的角度握住它时,并且振动并不总是一致的,因为必须调用 vibrator.vibrate( ) 方法在进入/更新等时再次出现,因此它通常会导致振动模式的细微不一致,应避免这种情况。所以我认为使用环境模式的方法不起作用。

这是以前的代码:

[...]
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)能够在黑屏时也发送振动但是事实证明,alarmmanager 的计时器不能设置为如此小的间隔?它仅每隔大约 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);
    }
}

然后在 onEnterAmbient 事件等中也调用 RefreshUpdateAndSetNextAlarm,但不能按预期工作。有没有办法在智能手表上做这些事情,尤其是在 Moto 360 上?

也许如果我通过messageAPI不断地从智能手机发送消息并将它们设置为紧急?

4

1 回答 1

0

解决方案是使用 CPU 唤醒锁:

PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
PowerManager.WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
            "MyWakelockTag");
wakeLock.acquire();

和屏幕保持打开标志:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
于 2016-11-14T10:08:27.040 回答