android 通知Notification详解及实例代码

android Notification实例详解

1.使用Builder模式来创建

2.必须要设置一个smallIcon,还可以设置setTicker

3.可以设置 setContentTitle,setContentInfo,setContentText,setWhen

4.可以设置setDefaults(闪屏,声音,震动),通过Notification设置flags(能不能被清除)

5.发送需要获取一个NotificationManager(getSystemService来获取);notify(int id,Notification)

6.清除 manager.cancelAll(清除所有) cancal(int id); 如果需要16一下的api也能访问,需要导入v4包,使用notificationCompat兼容类。

自定义通知

使用RemoteViews来建立一个布局,然后使用setContent()设置;

点击事件使用PendingIntent来完成

下面是一个案例

MainActivity类

public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void clearNotification(View v) { // 通过代码来清除 NO_CLEAR // 清除也需要manager NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); // 只能清除由本应用程序发出去的通知 manager.cancelAll(); } public void sendNotification(View v) { // 他是 在v4包中的通知,用于16以下版本发送通知 // NotificationCompat // 通知的创建 Notification.Builder builder = new Notification.Builder(this); // NotificationCompat.Builder builder2 = new NotificationCompat.Builder( // this); // 显示在通知条上的图标 必须的 builder.setSmallIcon(R.drawable.ic_launcher); // 显示通知条上的文字 不是必须的 builder.setTicker("您有一条新的消息!!"); // 状态栏中的 builder.setContentTitle("大标题"); builder.setContentText("文本"); builder.setWhen(System.currentTimeMillis()); builder.setContentInfo("Info"); builder.setDefaults(Notification.DEFAULT_ALL); // 点击事件使用Pending Intent intent = new Intent(this, MainActivity.class); PendingIntent pi = PendingIntent.getActivity(this, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT); builder.setContentIntent(pi); // 生成对象 16API以上,支持低版本需要使用v4包中的notificationCompat Notification notify = builder.build(); // 设置不能清除 notify.flags = Notification.FLAG_NO_CLEAR; // 如何将通知发送出去 NotificationManager mananger = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); // 通知的唯一值,如果id重复,表明是更新一条通知,而不是新建 mananger.notify((int) (Math.random() * 1000), notify); } public void diyNotification(View v) { // 展示在通知上面的视图 RemoteViews views = new RemoteViews(getPackageName(), R.layout.layout); Notification notification = new Notification.Builder(this) .setSmallIcon(R.drawable.ic_launcher).setTicker("自定义通知 ") // 布局 .setContent(views).build(); // 使用RemoteViews来设置点击事件 views.setTextColor(R.id.tv, Color.RED); Intent intent = new Intent(this, OneActivity.class); // 音乐播放是放在Service PendingIntent pi = PendingIntent.getActivity(this, 2, intent, PendingIntent.FLAG_UPDATE_CURRENT); views.setOnClickPendingIntent(R.id.tv, pi); Intent intent2 = new Intent(this, MainActivity.class); PendingIntent pi2 = PendingIntent.getActivity(this, 1, intent2, PendingIntent.FLAG_UPDATE_CURRENT); views.setOnClickPendingIntent(R.id.iv, pi2); // 发送 NotificationManager notify = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); notify.notify(1, notification); } }

OneActivity类

public class OneActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("跳转界面"); setContentView(tv); } }

activity.main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.lesson8_notification.MainActivity" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="sendNotification" android:text="普通的通知" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="clearNotification" android:text="清除所有通知" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="diyNotification" android:text="自定义通知" /> </LinearLayout>

layout.xml

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" /> <ImageView android:id="@+id/iv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /> </LinearLayout>

最后记得注册activity

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

时间: 2024-10-25 16:31:06

android 通知Notification详解及实例代码的相关文章

Android 文件选择器详解及实例代码_Android

     本文给大家讲解下Android文件选择器的使用.实际上就是获取用户在SD卡中选择的文件或文件夹的路径,这很像C#中的OpenFileDialog控件.        此实例的实现过程很简单,这样可以让大家快速的熟悉Android文件选择器,提高开发效率.        网上曾经见到过一个关于文件选择器的实例,很多人都看过,本实例是根据它修改而成的,但更容易理解,效率也更高,另外,本实例有自己的特点:        1.监听了用户按下Back键的事件,使其返回上一层目录.       

Android GPS定位详解及实例代码_Android

      GPS定位是智能手机上一个比较有意思的功能,LBS等服务都有效的利用了GPS定位功能.本文就跟大家分享下Android开发中的GPS定位知识.        一.Android基础知识准备        1.Activity类        每一种移动开发环境都有自己的基类.如J2ME应用程序的基类是midlets,BREW的基类是applets,而Android程序的基类是Activity.这个activity为我们提供了对移动操作系统的基本功能和事件的访问.这个类包含了基本的构造

Android语音识别技术详解及实例代码_Android

   今天从网上找了个例子实现了语音识别,个人感觉挺好玩的,就把代码贴出来与大家分享下:          Android中主要通过RecognizerIntent来实现语音识别,其实代码比较简单,但是如果找不到设置,就会抛出异常ActivityNotFoundException,所以我们需要捕捉这个异常.而且语音识别在模拟器上是无法测试的,因为语音识别是访问google云端数据,所以如果手机的网络没有开启,就无法实现识别声音的!一定要开启手机的网络,如果手机不存在语音识别功能的话,也是无法启用

Android ListView position详解及实例代码_Android

我们在使用ListView的时候,一般都会为ListView添加一个响应事件android.widget.AdapterView.OnItemClickListener.对OnItemClickListener的position和id参数,我相信有些人在这上面走了些弯路.     在使用listview的时候,我们经常会在listview的监听事件中,例如OnItemClickListener(onItemClick)中,或listview的adapter中(getView.getItem.ge

Android 百分比布局详解及实例代码

Android 百分比布局 1.引入:compile 'com.android.support:percent:24.0.0' 2.点开源码可以看到,主要有两个布局类PercentFrameLayout和PercentRelativeLayout,一个工具类PercentLayoutHelper. 3.点开布局类比如PercentRelativeLayout的源码,可以看到实现的很简单. public class PercentRelativeLayout extends RelativeLay

Android ListView position详解及实例代码

我们在使用ListView的时候,一般都会为ListView添加一个响应事件android.widget.AdapterView.OnItemClickListener.对OnItemClickListener的position和id参数,我相信有些人在这上面走了些弯路. 在使用listview的时候,我们经常会在listview的监听事件中,例如OnItemClickListener(onItemClick)中,或listview的adapter中(getView.getItem.getIte

Android 消息机制详解及实例代码

Android 消息机制 1.概述 Android应用启动时,会默认有一个主线程(UI线程),在这个线程中会关联一个消息队列(MessageQueue),所有的操作都会被封装成消息队列然后交给主线程处理.为了保证主线程不会退出,会将消息队列的操作放在一个死循环中,程序就相当于一直执行死循环,每循环一次,从其内部的消息队列中取出一个消息,然后回调相应的消息处理函数(handlerMessage),执行完成一个消息后则继续循环,若消息队列为空,线程则会阻塞等待.因此不会退出.如下图所示: Handl

Android 图片选择详解及实例代码

Android 图片选择 可以达到的效果: 1.第一个图片的位置放照相机,点击打开照相机 2.其余的是显示全部存储的图片,点击一次是查看大图,长按则是每张图片出现一个checkBox,可以进行选择 下面是实例效果图 MainActivity 类 public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener, AdapterView.OnItemLongClickList

Android语音识别技术详解及实例代码

今天从网上找了个例子实现了语音识别,个人感觉挺好玩的,就把代码贴出来与大家分享下: Android中主要通过RecognizerIntent来实现语音识别,其实代码比较简单,但是如果找不到设置,就会抛出异常ActivityNotFoundException,所以我们需要捕捉这个异常.而且语音识别在模拟器上是无法测试的,因为语音识别是访问google云端数据,所以如果手机的网络没有开启,就无法实现识别声音的!一定要开启手机的网络,如果手机不存在语音识别功能的话,也是无法启用识别! 下面是Recog