我正在开发一个小应用程序,我希望后台服务发送通知,当用户单击通知时,它必须启动相应的活动.我在这里发布通知的代码,我的问题是通知显示在状态栏上但是当我点击它时它不启动活动.有人可以建议我哪里出错了.请帮忙.
notificationmanager notificationmanager = (notificationmanager) getSystemService(NOTIFICATION_SERVICE);Notification notification = new Notification(R.drawable.ic_launcher, "A New Message!", System.currentTimeMillis());Intent notificationIntent = new Intent(NotificationService.this, com.jeris.androID.MetroActivity.class);notificationIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);PendingIntent pendingIntent = PendingIntent .getService(NotificationService.this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);notification.setLatestEventInfo(NotificationService.this, "Bullion", "Rates for "+ parsedDate+"has not been updated. Go to app to check rates", pendingIntent);notificationmanager.notify(11, notification);
解决方法:
更换
PendingIntent.getService(NotificationService.this,0,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);
同
PendingIntent.getActivity(NotificationService.this,0,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);
请注意,getService替换为getActivity.
总结以上是内存溢出为你收集整理的通知没有在android中启动活动全部内容,希望文章能够帮你解决通知没有在android中启动活动所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)