勤能补拙是良训,一分辛劳一分才。
本讲内容:通知 Notification 和 通知管理器 NotificationManager
我们通过一个例子实现一个可更新进度的通知,代码的讲解都写在注释里了
下面是res/layout/activity_main.xml 布局文件:
<LinearLayout xmlns:android="http://schemas....
分类:
移动开发 时间:
2014-11-22 17:33:16
阅读次数:
191
Notification和NotificationManager :可以用来实现可视化的消息通知等,比如:下载进度显示,消息显示,广播的内容等RemoteViews :用于创建自定义的NotificationPendingIntent :用于处理即将发生的事情;pendingintent中保存了当前...
分类:
其他好文 时间:
2014-11-11 18:31:21
阅读次数:
261
概述 通知(Notification)就是程序在不影响用户操作的情况下,通过手机顶部弹出消息告诉用户的一种信息通知方式,而且能够通过下拉通知操作抽屉通知,实现Notification与活动、通知和服务通信。比如:通知与活动相互通信,活动通过NotificationManager发送通知(创建通知),...
分类:
其他好文 时间:
2014-11-11 14:18:31
阅读次数:
193
1 public class NotificationTest extends Activity 2 { 3 static final int NOTIFICATION_ID = 0x123; 4 NotificationManager nm; 5 6 @Override...
分类:
移动开发 时间:
2014-11-04 16:43:19
阅读次数:
253
package com.example.mynotification;
import android.os.Bundle;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
i...
分类:
移动开发 时间:
2014-10-10 18:21:14
阅读次数:
190
1 NotificationManager notificationManager=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);//获取系统服务 2 Not...
分类:
其他好文 时间:
2014-09-26 20:03:28
阅读次数:
174
在android中有时会在主界面上收到某些应用的推送,有的可以包含图片,声音或者震动效果,当点击这些提示时,有时还可以进入到发送提示的的应用。
这些提示的推送就是通知,当然通知早根本上也是你一种服务。
首先想要使用通知就必须使用到Notification.Builder 和NotificationManager这两个类
使用Notification.Builder来取...
分类:
移动开发 时间:
2014-09-20 15:24:17
阅读次数:
277
Notification 可以理解为通知的意思,会出现在通知栏,比如来了一条短信使用 Notification 有以下3个步骤:1. 创建 NotificationManager的对象2.为Notification设置属性3.使用 NotificationManager 提供的 notify 发送通...
分类:
移动开发 时间:
2014-09-19 17:34:45
阅读次数:
186
概述
通知(Notification)就是程序在不影响用户操作的情况下,通过手机顶部弹出消息告诉用户的一种信息通知方式,并且可以通过下拉通知操作抽屉通知,实现Notification与活动、通知和服务通信。例如:通知与活动相互通信,活动通过NotificationManager发送通知(创建通知),而抽屉通知里面的操作则通过发送广播事件传递信息,此时活动只要已经注册过该广播事件的接收器,那么...
分类:
其他好文 时间:
2014-09-18 03:06:13
阅读次数:
302
Notification是显示在手机状态栏的通知,状态栏位于屏幕最上方,一般用于显示网络状态,电池状态,事件等,程序使用NotificationManager服务来发送Notification通知,步骤如下:调用getSystemService(NOTIFICATION_SERVICE)获取系统的N...
分类:
移动开发 时间:
2014-09-12 22:01:24
阅读次数:
193