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

Android ApiDemos示例解析(26):App->Notification->IncomingMessage

 
阅读更多


 Android ApiDemos示例解析(26):App->Notification->IncomingMessage

http://blog.csdn.net/mapdigit/article/details/7669940

也可以参考李刚的《Android疯狂讲义》

 

应用程序可以使用Notifications来通知用户某个事件发生了(如收到短信)。类NotificationManager 用来处理Notification, NotificationManager可以:
• 在Status Bar上显示一个新的图标。
• 在Extended status bar 窗口上显示附加信息或是启动一个Activity。
• 显示背光/LED。
• 使设备震动。
• 发出声音等。


对于一些没有UI的应用程序组件(如Broadcast Receiver, Services)或是非活动状态的Activity,Notification是推荐使用的可以提醒用户注意的方法。
Notification通常是在Status Bar上显示图标或是文字,此时用户如果想了解Notification的详细内容,可以按住Status Bar下拉显示Expanded Status bar 窗口,在Expanded Status bar窗口显示该Notification详情并可以启动对应的Activity。


IncomingMessage 示例介绍了Notification的一般用法:
1. 首先是取得NotificationManager 对象:

 NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

2. 然后创建Notification,创建Notification时指定显示在Status bar的图标,文字以及显示Notification的时间:
 
Notification notif = new Notification(R.drawable.stat_sample, tickerText, System.currentTimeMillis());

 

3. 然后定义当用户打开Extented status windows窗口时的标题及详情。Notification常常代表了一个请求或者需要引起注意的事件,因此可以指定一个PendingIntent来响应用户点击这个Notification。

 // The details of our fake message  
CharSequence from = "Joe"; 
CharSequence message = "kthx. meet u for dinner. cul8r"; 

// The PendingIntent to launch our activity if the user selects this notification 

//指定一个PendingIntent来响应用户点击这个Notification。
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                new Intent(this, IncomingMessageView.class), 0);


// Set the info for the views that show in the notification panel. 
notif.setLatestEventInfo(this, from, message, contentIntent);


// after a 100ms delay, vibrate for 250ms, pause for 100 ms and 
// then vibrate for 500ms. 
notif.vibrate = new long[] { 100, 250, 100, 500};

 

4. 最后是触发这个Notification

 nm.notify(R.string.imcoming_message_ticker_text, notif);

一般来说对应同一个事件可以使用同一个Notification来通知用户,nm.notify的第一个参数为Notification 的ID,类型为整数。 可以使用同一个ID来表示同一个Notification,也可以使用这个ID来取消这个Notification,在IncomingMessage 中当用户点击显示了这个IncomingMessage详情后,会取消这个Notification(类IncomingMessageView中)。

 nm.cancel(R.string.imcoming_message_ticker_text);

 

 

public class IncomingMessage extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.incoming_message);

		Button button = (Button) findViewById(R.id.notify);
		button.setOnClickListener(new Button.OnClickListener() {
			public void onClick(View v) {
				showToast();
				showNotification();
			}
		});
	}

	/**
	 * The toast pops up a quick message to the user showing what could be the
	 * text of an incoming message. It uses a custom view to do so.
	 * 
	 * 自定义Toast的显示View
	 */
	protected void showToast() {
		// create the view
		View view = inflateView(R.layout.incoming_message_panel);

		// set the text in the view
		TextView tv = (TextView) view.findViewById(R.id.message);
		tv.setText("khtx. meet u for dinner. cul8r");

		// show the toast
		Toast toast = new Toast(this);
		toast.setView(view);
		toast.setDuration(Toast.LENGTH_LONG);
		toast.show();
	}

	private View inflateView(int resource) {
		LayoutInflater vi = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
		return vi.inflate(resource, null);
	}

	/**
	 * The notification is the icon and associated expanded entry in the status
	 * bar.
	 */
	protected void showNotification() {
		// look up the notification manager service
		NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

		// The details of our fake message
		CharSequence from = "Joe";
		CharSequence message = "kthx. meet u for dinner. cul8r";

		// The PendingIntent to launch our activity if the user selects this
		// notification
		// 指定一个PendingIntent来响应用户点击这个Notification。
		PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
				new Intent(this, IncomingMessageView.class), 0);

		// The ticker text, this uses a formatted string so our message could be
		// localized
		String tickerText = getString(R.string.imcoming_message_ticker_text,
				message);

		// construct the Notification object.
		Notification notif = new Notification(R.drawable.stat_sample,
				tickerText, System.currentTimeMillis());

		// Set the info for the views that show in the notification panel.
		notif.setLatestEventInfo(this, from, message, contentIntent);

		// after a 100ms delay, vibrate for 250ms, pause for 100 ms and
		// then vibrate for 500ms.
		notif.vibrate = new long[] { 100, 250, 100, 500 };

		// Note that we use R.layout.incoming_message_panel as the ID for
		// the notification. It could be any integer you want, but we use
		// the convention of using a resource id for a string related to
		// the notification. It will always be a unique number within your
		// application.
		nm.notify(R.string.imcoming_message_ticker_text, notif);
	}
}

 

 



 

源码工程:

  • 大小: 85.7 KB
分享到:
评论

相关推荐

    android apidemos示例解析

    ### Android ApiDemos示例解析 #### 概述 Android ApiDemos是一个官方提供的示例应用程序集合,旨在帮助开发者理解并掌握Android SDK的各种API用法。通过这些示例,开发者可以学习到如何在实际项目中应用不同的...

    android API-DEMOS中文解析文档

    #### 2.26 App->Notification->IncomingMessage 介绍了如何实现消息通知,包括如何监听消息接收事件。 #### 2.27 App->Notification->NotifyingServiceController 讲解了如何利用服务来发送通知。 #### 2.28 App->...

    Android ApiDemos4.4 示例解析

    最新版ApiDemos Android SDK 中带有很多例子,其中ApiDemo 详细介绍了Android 平台主要API,分成了 · App · Content · Graphics · Media · OS · Text · Views 几个大类,每个大类又分为几个小类,...

    最新Android apidemos

    《深入探索Android API Demos:最新实践与技术解析》 Android API Demos是Google官方提供的一款用于展示Android SDK中各种API功能和用法的应用程序,它涵盖了从基础控件到高级特性的全方位示例,是开发者学习...

    Android6.0 Api Demos

    Android 6.0 API Demos 是一个官方提供的示例代码集合,它展示了Android 6.0 (Marshmallow) SDK中的各种API功能和用法。这些示例旨在帮助开发者更好地理解和学习如何在实际应用中使用Android的新特性和API。下面将...

    ApiDemos示例源码

    《ApiDemos示例源码解析》 ApiDemos是Android平台提供的一款示例应用,它包含了Android SDK中的各种API功能展示,对于开发者来说,这是一个非常宝贵的资源库,可以帮助我们深入理解和学习Android系统的API用法。...

    Android ApiDemos apk

    Android ApiDemos apk是Android开发者们熟悉的一个示例程序,它包含了Android SDK中的各种API功能演示,为开发者提供了丰富的学习资源。这个应用程序旨在帮助开发者更好地理解和掌握Android平台的各种功能和特性,...

    android ApiDemos不报错版本

    Android ApiDemos是Android平台上的一个官方示例项目,它为开发者提供了丰富的API演示,涵盖了Android系统中的各种控件和功能,是学习和理解Android开发的宝贵资源。这个不报错版本确保了无论是通过虚拟机还是真机...

    android1.6 apiDemos

    《Android 1.6 API Demos深度解析》 在Android开发的世界中,API Demos是一个不可或缺的学习资源,它为开发者提供了丰富的示例代码,帮助理解并掌握Android API的各种功能。本篇文章将深入探讨"android1.6 apiDemos...

    Android ApiDemos

    `Android ApiDemos` 是Android系统提供的一款官方示例程序,它集合了Android SDK中的各种API用法,是开发者学习和理解Android开发的关键资源。这个项目旨在通过实例代码来演示Android API的各种功能和组件,帮助...

    android ApiDemos

    Android API Demos是一款由谷歌官方提供的开源项目,它包含了大量Android SDK中的API示例代码,旨在帮助开发者更好地理解和学习如何在实际应用中使用Android的各种功能和API。该项目覆盖了从基础组件到高级特性的全...

    Android ApiDemos不报错版本,eclipse可用

    ApiDemos是Android官方提供的一款示例应用,它包含了Android SDK中的各种API功能演示,帮助开发者了解和学习Android系统提供的各种API接口和功能。这个"Android ApiDemos不报错版本"是针对eclipse开发环境优化过的,...

    android的ApiDemos

    API Demos 是 Google 为了 Android 开发者所提供的一个 Android API 合集,其中包含了很多的 API 范例,同时遵循了良好的代码规范,是一个值得开发者研究和学习的典型。android的ApiDemos,需要解压缩后使用。

    Android ApiDemos2.1

    7. **Notification**:关于通知系统的使用,ApiDemos提供了不同类型的Notification示例,包括简单的文本通知、带图标的通知、进度条通知等。 8. **动画与图形**:Android 2.1中的图形和动画功能也在ApiDemos中有所...

    android apidemos

    Android API Demos是Android开发者平台提供的一款强大的学习工具,它包含了大量的示例代码,覆盖了Android系统API的各种功能和组件,对于初学者和经验丰富的开发者来说,都是深入理解Android系统及其API的重要资源。...

    Android2.2 ApiDemos

    《Android 2.2 ApiDemos深度解析》 在Android开发领域,ApiDemos是一个非常重要的参考资料,它是由Google官方提供的一个示例程序,包含了Android SDK中的各种API功能的演示。这个项目,针对的是Android 2.2(API...

    android api19 ApiDemos

    在Android开发领域,API Demos是一个非常重要的学习资源,它包含了Android SDK中的各种API示例代码,帮助开发者深入理解和掌握Android平台的功能特性。本文将针对API Level 19(KitKat版本)的ApiDemos进行详细解析...

Global site tag (gtag.js) - Google Analytics