我有一个显示播放暂停通知的应用程序。我希望当用户点击通知时,应用程序中的服务会被调用,我会在该服务中执行我的操作。
我已经完成了我的通知项目小部件,比如按钮,但现在我想处理用户点击整个通知栏。有什么帮助?
这是我处理项目的代码点击:
Intent intent = new Intent(context , MyNotificationService.class);
intent.putExtra("ID","play");
PendingIntent pendingIntent = PendingIntent.getService(context,0,intent,0);
myRemoteView.setOnClickPendingIntent(R.id.myButton);
答案 0 :(得分:1)
jQuery(document).ready(function(){
$(".checkbox").find('a').attr("href", 'http://www.somewebsite.com');
});
你去了:)这会在点击通知时打开'YourActivity'。