Android开发之Notification通知

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android开发之Notification通知相关的知识,希望对你有一定的参考价值。

消息通知使我们很常见的,当收到一条消息的时候,通知栏会显示一条通知;

直接看代码:

 1 public class MainActivity extends Activity {
 2 
 3     private NotificationManager nm;
 4     @Override
 5     protected void onCreate(Bundle savedInstanceState) {
 6         super.onCreate(savedInstanceState);
 7         setContentView(R.layout.activity_main);
 8         nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
 9     }
10 
11     public void click(View v){
12         Notification notification = new Notification.Builder(this)
13                 .setContentTitle("我是大标题")
14                 .setContentText("我是标题的内容")
15                 .setSmallIcon(R.mipmap.ic_launcher)
16                 .setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))
17                 .build();
18             nm.notify(10,notification);
19     }
20     public void click1(View v){
21         nm.cancel(10);
22     }
23 }

首先创建一个Notification的实例,然后通过NotificationManager的实例将Notification发送出来。

  nm.notify(10,notification);

 发出一条通知,id为10;

 

nm.cancel(10);
将id为10的通知取消。

 



以上是关于Android开发之Notification通知的主要内容,如果未能解决你的问题,请参考以下文章

Android控件之Notification

Android学习羁绊之Notification

Android之Notification讲解

Android之Notification讲解

Android移动应用开发之ImageViewProgressBar和Notification的一些简单使用

Android 开发学习