NotificationManager manager= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification=new NotificationCompat.Builder(MainActivity.this)
.setContentTitle("标题")//标题
.setContentText("内容")//内容
.setSmallIcon(R.mipmap.ic_launcher)//图标
.build();
manager.notify(1,notification);
通知栏Notification基本使用
最新推荐文章于 2024-01-10 18:19:11 发布