显示App Running的通知

时间:2017-12-13 07:30:10

标签: android notifications

我正在开发一个应用程序,我想在锁定屏幕上显示通知,如果应用程序正在运行我的意思是,如果用户打开应用程序然后锁定屏幕,那么在锁定屏幕上显示通知,如音乐播放器

1 个答案:

答案 0 :(得分:0)

这是代码

NotificationCompat.Builder b = new NotificationCompat.Builder(getBaseContext());
b.setAutoCancel(true)
     .setDefaults(NotificationCompat.DEFAULT_ALL)
     .setWhen(System.currentTimeMillis())
     .setSmallIcon(R.mipmap.ic_launcher)
     .setContentTitle("title");
NotificationManager nm = (NotificationManager)getBaseContext().getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(1, b.build());