// Create notification manager String ns = Context.NOTIFICATION_SERVICE; notificationmanager mnotificationmanager = (notificationmanager) getSystemService(ns); Notification notification = new Notification(R.drawable.ic_launcher,"Ready",System.currentTimeMillis()); Intent notificationIntent = new Intent(this,HomeActivity.class); PendingIntent contentIntent = PendingIntent.getActivity(this,notificationIntent,0); // Make a notification notification.setLatestEventInfo(getApplicationContext(),"Select to manage your settings",contentIntent); mnotificationmanager.notify(0,notification);解决方法 你想要 FLAG_ONGOING_EVENT.如果它们是默认值的一部分,也尝试删除FLAG_NO_CLEAR和FLAG_@R_502_6843@_CANCEL. 总结
以上是内存溢出为你收集整理的在我的应用关闭之前,如何显示Android通知?全部内容,希望文章能够帮你解决在我的应用关闭之前,如何显示Android通知?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)