一、概述
Notification是显示在手机状态栏的消息(手机状态栏位于手机最顶端),代表一种全局效果的通知。
二、通知栏的内容
图标、标题、内容、时间、点击后响应
三、实现通知栏
(1)获取NotificationManager。
(2)显示通知栏:notify(id, notification);
(3)取消通知栏:cancle(id);
(4)构造Notification并设置显示内容
(5)通知栏通知可以设置声音提示,指示灯,以及震动效果。
四、示例
1、Activity的内容如下:
<span style="font-size:18px;">package com.sqb.demo8;
import com.sqb.app_im2.MainActivity;
import com.sqb.app_im2.R;
import android.app.Activity;
import android.app.Notification;
import android.app.Notification.Builder;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
public class Activity8Notification extends Activity implements OnClickListener{
NotificationManager manager ;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.layout8notification);
manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
findViewById(R.id.btn8_1).setOnClickListener(this);
findViewById(R.id.btn8_2).setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch(v.getId()){
case R.id.btn8_1:
sendNotification();
break;
case R.id.btn8_2:
manager.cancel(12);
break;
}
}
/**
* 构造Notification并发送到通知栏
*/
public void sendNotification(){
Intent intent = new Intent(this,MainActivity.class);
PendingIntent pintent = PendingIntent.getActivity(this, 0, intent, 0);
Builder builder = new Notification.Builder(this);
builder.setSmallIcon(R.drawable.ic_launcher); //设置通知的小图标
builder.setTicker("我的应用"); //设置通知栏的提示
builder.setWhen(System.currentTimeMillis()); //设置时间
builder.setContentTitle("我的标题"); //设置标题
builder.setContentText("我是内容,您收到了一条通知"); //设置通知内容
builder.setContentIntent(pintent); //设置点击通知后要显示的意图
//builder.setDefaults(Notification.DEFAULT_LIGHTS); //设置指示灯
//builder.setDefaults(Notification.DEFAULT_SOUND); //设置声音,需要权限android.permission.FLASHLIGHT
//builder.setDefaults(Notification.DEFAULT_VIBRATE); //设置震动,需要权限android.permission.VIBRATE
builder.setDefaults(Notification.DEFAULT_ALL); //设置指示灯、声音、震动
Notification notification = builder.build(); //4.1(API 16)以上可以用这个方法获取Notification对象
//builder.getNotification(); //4.1以前用这个方法获取Notification对象
manager.notify(12,notification); //12是
}
}</span>
2、布局文件
<span style="font-size:18px;"><?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" >
<Button
android:id="@+id/btn8_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="发送通知"/>
<Button
android:id="@+id/btn8_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="取消通知"/>
</LinearLayout></span>