`
vinny_w
  • 浏览: 56023 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Android-NotificationManager和Notification的使用总结

阅读更多
(1) 使用系统定义的Notification
   
    示例代码:
//创建一个NotificationManager的引用
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);

// 定义Notification的各种属性
int icon = R.drawable.icon; //通知图标
CharSequence tickerText = "Hello"; //状态栏显示的通知文本提示
long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
//用上面的属性初始化 Nofification
Notification notification = new Notification(icon,tickerText,when);
	/*
	* 添加声音
	* notification.defaults |=Notification.DEFAULT_SOUND;
	* 或者使用以下几种方式
	* notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
	* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
	* 如果想要让声音持续重复直到用户对通知做出反应,则可以在notification的flags字段增加"FLAG_INSISTENT"
	* 如果notification的defaults字段包括了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
	*/
	/*
	* 添加振动
	* notification.defaults |= Notification.DEFAULT_VIBRATE;
	* 或者可以定义自己的振动模式:
	* long[] vibrate = {0,100,200,300}; //0毫秒后开始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
	* notification.vibrate = vibrate;
	* long数组可以定义成想要的任何长度
	* 如果notification的defaults字段包括了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
	*/
	/*
	* 添加LED灯提醒
	* notification.defaults |= Notification.DEFAULT_LIGHTS;
	* 或者可以自己的LED提醒模式:
	* notification.ledARGB = 0xff00ff00;
	* notification.ledOnMS = 300; //亮的时间
	* notification.ledOffMS = 1000; //灭的时间
	* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
	*/
	/*
	* 更多的特征属性
	* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自动清除此通知
	* notification.flags |= FLAG_INSISTENT; //重复发出声音,直到用户响应此通知
	* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在运行"组中
	* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后,此通知不清除,
	* //经常与FLAG_ONGOING_EVENT一起使用
	* notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
	* //如果要使用此字段,必须从1开始
	* notification.iconLevel = ; //
	*/
	//设置通知的事件消息
	Context context = getApplicationContext(); //上下文
	CharSequence contentTitle = "My Notification"; //通知栏标题
	CharSequence contentText = "Hello World!"; //通知栏内容
	Intent notificationIntent = new Intent(this,Main.class); //点击该通知后要跳转的Activity
	PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
	notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
	//把Notification传递给 NotificationManager
	mNotificationManager.notify(0,notification);
 

    如果想要更新一个通知,只需要在设置好notification之后,再次调用 setLatestEventInfo(),然后重新发送一次通知即可,即再次调用notify()。

(2) 使用自定义的 Notification
    要创建一个自定义的Notification,可以使用RemoteViews。要定义自己的扩展消息,首先 要初始化一个RemoteViews对象,然后将它传递给Notification的contentView字段,再把PendingIntent传递给 contentIntent字段。
  
示例代码:
	//1、创建一个自定义的消息布局 view.xml
	<?xml version="1.0" encoding="utf-8"?>
	<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="fill_parent" android:layout_height="fill_parent">
	<ImageView android:id="@+id/image" android:layout_width="wrap_content"
	android:layout_height="fill_parent" android:layout_marginRight="10dp" />
	<TextView android:id="@+id/text" android:layout_width="wrap_content"
	android:layout_height="fill_parent" android:textColor="#000" />
	</LinearLayout>

	//2、 在程序代码中使用RemoteViews的方法来定义image和text。然后把RemoteViews对象传到contentView字段
	RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
	contentView.setImageViewResource(R.id.image,R.drawable.icon);
	contentView.setTextViewText(R.id.text,”Hello,this message is in a custom expanded view”);
	notification.contentView = contentView;

	//3、 为Notification的contentIntent字段定义一个Intent(注意,使用自定义View不需要 setLatestEventInfo()方法)
	Intent notificationIntent = new Intent(this,Main.class);
	PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
	notification.contentIntent = contentIntent;

	//4、发送通知
	mNotificationManager.notify(2,notification);

	// 以下是全部示例代码

	//创建一个 NotificationManager的引用
	String ns = Context.NOTIFICATION_SERVICE;
	NotificationManager mNotificationManager = (NotificationManager)getSystemService(ns);
	// 定义Notification的各种属性
	int icon = R.drawable.icon; //通知图标
	CharSequence tickerText = "Hello"; //状态栏显示的通知文本提示
	long when = System.currentTimeMillis(); //通知产生的时间,会在通知信息里显示
	//用上面的属性初始化 Nofification
	Notification notification = new Notification(icon,tickerText,when);
	RemoteViews contentView = new RemoteViews(getPackageName(),R.layout.view);
	contentView.setImageViewResource(R.id.image, R.drawable.iconempty);
	contentView.setTextViewText(R.id.text, "Hello,this is JC");
	notification.contentView = contentView;
	Intent notificationIntent = new Intent(this,Main.class);
	PendingIntent contentIntent = PendingIntent.getActivity(this,0,notificationIntent,0);
	notification.contentIntent = contentIntent;
	//把Notification传递给NotificationManager
	mNotificationManager.notify(0,notification);
 
分享到:
评论

相关推荐

    android-progressbar and notification

    总之,理解并熟练使用`ProgressBar`和`Notification`是Android开发中的必备技能。它们能为用户提供更好的交互体验,尤其是在进行长时间操作时,通过实时的进度反馈和通知提醒,能让用户了解应用的状态,提升用户体验...

    The-use-of-Android-Notification.zip_android

    - **测试适配**:确保通知在不同Android版本和设备上表现一致,考虑使用兼容库处理API级别的差异。 6. **案例分析** - 示例文档中可能包含了创建天气预报通知、消息通知、下载进度通知等具体实例,展示了如何...

    Android-Notification-Example-master源码

    `Android-Notification-Example-master`是一个专注于Android通知系统的示例项目,非常适合开发者深入理解Android通知的工作原理和用法。下面我们将详细探讨这个源码中的关键知识点。 1. **通知的基本结构** - `...

    Android-Carousel-Notification允许您进行轮播类型通知用户可以在通知内导航

    8. **测试与调试(Testing & Debugging)**:在开发过程中,使用Android Studio的模拟器或真实设备进行测试至关重要,以验证不同屏幕尺寸和Android版本下的表现。 9. **用户反馈(User Feedback)**:在发布应用后...

    android Notification通知消息学习(NotificationManager)

    这篇博文“android Notification通知消息学习(NotificationManager)”显然是探讨如何有效地利用NotificationManager来创建和管理Android的通知。NotificationManager是Android提供的一个系统服务,用于管理和显示...

    android-sdk-sources-android-27.rar

    1. **通知系统的改进**:Android 8.1 引入了更强大的通知管理,例如通知通道(Notification Channels),允许开发者为不同的通知类型创建自定义频道,用户可以单独控制每个频道的可见性和优先级。这在源码中主要体现...

    android-notification-progressbar

    当涉及到`android-notification-progressbar`,我们关注的是如何在通知中嵌入一个进度条,实时反映后台任务的进度。 首先,创建通知需要使用NotificationCompat.Builder类。这是一个兼容库,确保在不同版本的...

    Phonegap-LocalNotification-master

    在“Phonegap-LocalNotification-master”项目中,可能包含的文件有示例代码、配置文件、插件源码等,它们可以帮助开发者深入理解如何在实际项目中集成和使用这个插件。通过对这些文件的分析和学习,开发者可以掌握...

    android用户界面之Notification教程实例汇总

    - **内容概述**: 文章深入介绍了Android中几种常见的通知方式——Toast、Notification和Alarm的工作原理及使用方法,并给出了具体的代码示例。 **9. NotificationManagerandNotification学习笔记** - **链接**: ...

    android 状态栏的图标与文字提醒 NotificationManager与Notification

    总的来说,`NotificationManager`和`Notification`是Android通知系统的核心组件。开发者通过它们能够创建具有丰富交互和自定义特性的通知,为用户提供及时的信息反馈。正确理解和使用这两个类对于开发高质量的...

    Android入门开发实例--Toast、Notification、Intent应用

    在Android应用开发中,`Toast`、`Notification`和`Intent`是三个核心组件,它们在应用程序中扮演着至关重要的角色。本篇文章将深入探讨这三个概念,并通过实例讲解如何在实际开发中运用它们。 首先,我们来理解`...

    Android应用源码之notification.zip

    - 在Android系统中,Notification通过NotificationManager服务进行管理,应用通过该服务发送和取消通知。 - 通知会出现在状态栏,当用户下拉时显示详细信息,点击可以启动对应的Activity或者执行预定义的动作。 2...

    Android-各种各样的androidNotification效果

    在Android开发中,Notification是应用与用户交互的重要方式之一,特别是在后台运行时,它能向用户提供关键信息,如消息通知、事件提醒等。本主题主要探讨"Android-各种各样的android Notification效果",旨在帮助...

    Android-Studio-28-Notification:这是一个通知项目

    Android-Studio-28-Notification项目就是一个专注于实践和理解Android通知机制的实例。在这个项目中,开发者将学习如何创建、管理和定制各种类型的通知。 **一、通知的基本结构** 通知通常由以下几个部分组成: 1...

    Android学习下 toast notification用法.rar

    本资源“Android学习下 toast notification用法.rar”包含了有关如何在Android应用中使用这两种组件的源码实例,适合Android初学者进行学习和参考。 1. **Toast** Toast在Android中用于在界面上显示临时消息,它会...

    Android-Notification(兼容8.0+以及8.0以下).zip

    首先,从Android 8.0(API级别26)开始,通知渠道(Notification Channel)被引入,这是为了提升用户体验和控制应用的通知权限。开发者需要为每个类型的通知创建一个渠道,并且为每个渠道分配唯一的ID。例如,你可以...

    安卓消息推送通知栏相关-状态栏Notification简单Demo.rar

    这个Demo应该包含了一个简单的示例项目,你可以导入到Android Studio中,运行并调试,理解`Notification`的创建过程和使用方法。通过查看和修改代码,你可以更深入地学习如何自定义`Notification`的行为和外观,以...

    Android高级应用源码-实现Notification的通知栏常驻.rar

    本资源“Android高级应用源码-实现Notification的通知栏常驻.rar”提供了一套实现通知栏常驻的源代码,这对于开发者来说是一个很好的学习和参考材料。 首先,我们要理解什么是常驻通知。在Android中,常驻通知是指...

    android-admob-notification:Aula deProgramaçãopara DispositivosMóveis| 阿尔法学院

    总的来说,"android-admob-notification"课程将指导你如何在Android应用中有效地整合AdMob广告,并创建吸引人的通知,提升用户体验,同时遵循AdMob的最佳实践和政策。通过学习,你将能够利用AdMob这一强大的工具为你...

Global site tag (gtag.js) - Google Analytics