0

我正在编写一个小型 Android Wear 应用程序,它的部分功能是创建一个包含两个操作的持续通知: 1. 再次打开应用程序。2.关闭(清除状态)应用程序。

第一个动作(打开)完美运行(即:我按下按钮,执行动作)。但是第二个动作不会触发任何东西。

这是通知本身的代码:

    // First action: open app's main activity
    Intent actionIntent = new Intent(this, MainActivity.class);
    PendingIntent actionPendingIntent =
            PendingIntent.getActivity(this, 0, actionIntent,
                    PendingIntent.FLAG_UPDATE_CURRENT);

    NotificationCompat.Action action =
            new NotificationCompat.Action.Builder(R.drawable.close_button,
                    getString(R.string.open_app), actionPendingIntent)
                    .build();

    // Second action: clear the state of the app, by firing a service which will do so
    Intent tnsIntent = new Intent(this, TimerNotificationService.class);
    PendingIntent tnsPendingIntent =
            PendingIntent.getActivity(this, 0, tnsIntent,
                    PendingIntent.FLAG_CANCEL_CURRENT);

    NotificationCompat.Action closeAppAction =
            new NotificationCompat.Action.Builder(R.drawable.close_button,
                    getString(R.string.close_app), tnsPendingIntent)
                    .build();

    return new  NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.common_signin_btn_icon_dark)
            .setContentTitle(getString(R.string.time_tracking_on))
            .setContentText("Tap to open app")
            .setWhen(System.currentTimeMillis())
            .setOngoing(true)
            .extend(new NotificationCompat.WearableExtender().addAction(action).addAction(closeAppAction))
            .setLocalOnly(true)
            .build();

注意:我尝试以另一种方式实例化 tnsIntent,Intent tnsIntent = new Intent(ACTION_TERMINATE_TRACKING, null, this, TimerNotificationService.class);但它没有改变任何东西。

该服务如下所示:

public class TimerNotificationService extends IntentService {
    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        clearSomeState();
    }
}

我在调试模式下运行应用程序并在onHandleIntent()服务中放置了一个断点,但我没有命中断点,所以服务甚至没有收到意图。我是否错过了一些我应该在某处为服务做的意图注册电话?(在清单中?)

4

1 回答 1

2

如果tnsPendingIntent正在启动 a Service,则应从 设置PendingIntent.getService,而不是PendingIntent.getActivity如您的代码片段所示。(参考

于 2016-10-28T04:03:43.197 回答