我有以下代码来创建状态栏通知:
public void txtNotification(int id, String msg){
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(android.R.drawable.sym_action_email, msg, System.currentTimeMillis());
// The PendingIntent will launch activity if the user selects this notification
Intent intent = new Intent(this, MainActivity.class)
intent.putExtra("yourpackage.notifyId", id);
PendingIntent contentIntent = PendingIntent.getActivity(this, 1, intent, 0);
notification.setLatestEventInfo(this, "title", msg, contentIntent);
manager.notify(id, notification);
}
点击通知后,我想调用一个方法,最好能够访问通知的ID。
提前致谢,
添
(编辑:我在阅读完第一个答案后更新了我的代码,但我仍然不知道如何倾听意图)
答案 0 :(得分:16)
我认为处理通知点击的最佳方式(可能是唯一的方法?)是在PendingIntent调用的类中定义一个方法(在本例中为MainActivity)。您可以在将其传递到getActivity()之前修改您的意图,以包含通知的ID:
// The PendingIntent will launch activity if the user selects this notification
Intent intent = new Intent(this, MainActivity.class)
intent.putExtra("yourpackage.notifyId", id);
PendingIntent contentIntent = PendingIntent.getActivity(this, 1, intent, 0);
然后在MainActivity中观察此意图,并调用您在类中定义的方法来处理通知。您可以从传入的Intent中提取id。
<强>更新强>
为了让您的活动处理通知,您需要先在AndroidManifest.xml
文件中定义活动,包括您需要的任何意图过滤器。然后在Activity的onStart()中,您可以从传入的intent中提取额外内容,并根据该数据进行操作。这是一个高级概述,因此我建议您阅读开发指南的部分内容以熟悉这些概念。以下页面是一个很好的起点:
http://developer.android.com/guide/topics/fundamentals.html
此外,“yourpackage”应替换为包含您的类的包的名称,例如“com.project.foo”。
答案 1 :(得分:2)
对于像我这样的假人: 在MainActivity上获取此yourpackage.notifyId:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Bundle intent_extras = getIntent().getExtras();
if (intent_extras != null && intent_extras.containsKey("yourpackage.notifyId"))
{
//Do the codes
}
}
在我的情况下 - 用它来确定谁正在打开我的主动,用户或来自通知的电话,由GcmIntentService控制...... 附:我使用的名字没有“youpackage”,也很好用。