Androidステータスバー通知Notification、NotificationManager詳細
14687 ワード
Androidシステムでは、ステータスバーを通知するのは便利です.次に、ステータスバー通知を送信する方法、ステータスバー通知に設定できるパラメータを見てみましょう.
まず、ステータスバー通知を送信するには、NotificationManager、Notificationの2つのクラスが必要です.
NotificationManager:ステータスバー通知の管理クラスで、通知、明確な通知などを担当します.
NotificationManagerはシステムサービスであり、
Notification:特定のステータスバー通知オブジェクトで、icon、文字、ヒント音、振動などのパラメータを設定できます.
次に、通知に必要な基本パラメータを設定します.
Anicon(通知のアイコン)A title and expanded message(通知のタイトルと内容)A
オプションの設定:
A ticker-text message(ステータスバー上部プロンプトメッセージ)An alert sound(ヒント音)A vibrate setting(振動)A flashing LED setting(ライト)など
一、Notificationの作成
NotificationManagerのnotify(int,Notification)メソッドでNotificationを起動します.
最初のパラメータは、このNotificationを一意に識別し、2番目のパラメータはNotificationオブジェクトです.
二、Notificationの更新
NotificationのsetLatestEventInfoメソッドを呼び出してコンテンツを更新し、Notify()メソッドを呼び出せばよい.(具体的には以下の例を参照)
三、Notificationの削除
NotificationManagerの
もちろん
四、Notification設定(振動、ベルなど)
1.基本設定:
まず、ステータスバー通知を送信するには、NotificationManager、Notificationの2つのクラスが必要です.
NotificationManager:ステータスバー通知の管理クラスで、通知、明確な通知などを担当します.
NotificationManagerはシステムサービスであり、
getSystemService() 。
を通過する必要があります.1
<code>NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);</code>
Notification:特定のステータスバー通知オブジェクトで、icon、文字、ヒント音、振動などのパラメータを設定できます.
次に、通知に必要な基本パラメータを設定します.
Anicon(通知のアイコン)A title and expanded message(通知のタイトルと内容)A
PendingIntent ( )
オプションの設定:
A ticker-text message(ステータスバー上部プロンプトメッセージ)An alert sound(ヒント音)A vibrate setting(振動)A flashing LED setting(ライト)など
一、Notificationの作成
NotificationManagerのnotify(int,Notification)メソッドでNotificationを起動します.
最初のパラメータは、このNotificationを一意に識別し、2番目のパラメータはNotificationオブジェクトです.
二、Notificationの更新
NotificationのsetLatestEventInfoメソッドを呼び出してコンテンツを更新し、Notify()メソッドを呼び出せばよい.(具体的には以下の例を参照)
三、Notificationの削除
NotificationManagerの
cancel(int) , 。
Notificationの一意のIDを使用します.もちろん
cancelAll() 。
を通過することもできます四、Notification設定(振動、ベルなど)
1.基本設定:
//
baseNF = new Notification();
//
baseNF.icon = R.drawable.icon;
//
baseNF.tickerText = "You clicked BaseNF!";
// DEFAULT_SOUND, DEFAULT_VIBRATE, DEFAULT_LIGHTS.
// , DEFAULT_ALL.
//
baseNF.defaults = Notification.DEFAULT_SOUND;
// : expanded message title
// : expanded message text
// :
baseNF.setLatestEventInfo(Lesson_10.this, "Title01", "Content01", pd);
//
//The first parameter is the unique ID for the Notification
// and the second is the Notification object.
nm.notify(Notification_ID_BASE, baseNF);
:
2. を
デフォルトの を する はdefaultを すればいいです.1
baseNF.defaults = Notification.DEFAULT_SOUND;
, sound 。 :
1
notification.sound = Uri.parse(
"file:///sdcard/notification/ringer.mp3"
);
, , , :
1
notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI,
"6"
);
default、soundが に れると、soundが になり、デフォルトのベルが されることに してください.
デフォルトでは、 された の は1 で します. を するにはflagsパラメータにFLAG_を ける がありますINSISTENT. これにより、ドロップダウンステータスバーなどのユーザー が します.1
notification.flags |= notification.FLAG_INSISTENT;
3. を
デフォルトの を する もdefaultが されます.1
notification.defaults |= Notification.DEFAULT_VIBRATE;
, Long 。
1
long
[] vibrate = {
0
,
100
,
200
,
300
};
2
notification.vibrate = vibrate;
こちらのLong では,1 のパラメータが までの ち ,2 のパラメータが1 の の ,3 のパラメータが2 の の といったように,どのくらいの を に する.しかし,この では を り すことはできない.
にdefault、vibrateが に される 、デフォルト が されます.
また、バイブレータを するには、 のような が です.1
<uses-permission android:name=
"android.permission.VIBRATE"
></uses-permission>
4.フラッシュ
のライトを すると、 のようになります.1
notification.defaults |= Notification.DEFAULT_LIGHTS;
カスタム:1
notification.ledARGB =
0xff00ff00
;
2
notification.ledOnMS =
300
;
3
notification.ledOffMS =
1000
;
4
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
ここでledARGBは、ライトの 、ledOnMSの 、ledOffMSの い を します.
:こちらの は と があり、すべての が ではありません. な を てください.
5.その の な :
flags:
Notification.FLAG_INSISTENT;//ユーザーが するまで、 、 を に させる
Notification.FLAG_AUTO_CANCEL;// がクリックされると に える
Notification.FLAG_NO_CLEAR;//「Clear」をクリックすると、その が になります(QQの はクリアできません.これを っています)
すべてのコードは のとおりです.package com.yfz;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore.Audio;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RemoteViews;
import android.widget.SeekBar;
import android.widget.TextView;
/**
* Notification
* @author Administrator
*
*/
public class Lesson_10 extends Activity {
//BaseNotification
private Button bt01;
//UpdateBaseNotification
private Button bt02;
//ClearBaseNotification
private Button bt03;
//MediaNotification
private Button bt04;
//ClearMediaNotification
private Button bt05;
//ClearALL
private Button bt06;
//CustomNotification
private Button bt07;
//
private NotificationManager nm;
//
private PendingIntent pd;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/* */
setContentView(R.layout.lesson10);
init();
}
private void init() {
bt01 = (Button)findViewById(R.id.le10bt01);
bt02 = (Button)findViewById(R.id.le10bt02);
bt03 = (Button)findViewById(R.id.le10bt03);
bt04 = (Button)findViewById(R.id.le10bt04);
bt05 = (Button)findViewById(R.id.le10bt05);
bt06 = (Button)findViewById(R.id.le10bt06);
bt07 = (Button)findViewById(R.id.le10bt07);
bt01.setOnClickListener(onclick);
bt02.setOnClickListener(onclick);
bt03.setOnClickListener(onclick);
bt04.setOnClickListener(onclick);
bt05.setOnClickListener(onclick);
bt06.setOnClickListener(onclick);
bt07.setOnClickListener(onclick);
nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Intent intent = new Intent(this,Lesson_10.class);
pd = PendingIntent.getActivity(Lesson_10.this, 0, intent, 0);
}
OnClickListener onclick = new OnClickListener() {
//BASE Notification ID
private int Notification_ID_BASE = 110;
private Notification baseNF;
//Notification ID
private int Notification_ID_MEDIA = 119;
private Notification mediaNF;
@Override
public void onClick(View v) {
switch(v.getId()) {
case R.id.le10bt01:
//
baseNF = new Notification();
//
baseNF.icon = R.drawable.icon;
//
baseNF.tickerText = "You clicked BaseNF!";
// DEFAULT_SOUND, DEFAULT_VIBRATE, DEFAULT_LIGHTS.
// , DEFAULT_ALL.
//
baseNF.defaults |= Notification.DEFAULT_SOUND;
baseNF.defaults |= Notification.DEFAULT_VIBRATE;
baseNF.defaults |= Notification.DEFAULT_LIGHTS;
// 、 ,
baseNF.flags |= Notification.FLAG_INSISTENT;
// ,
baseNF.flags |= Notification.FLAG_AUTO_CANCEL;
// 'Clear' , (QQ , )
baseNF.flags |= Notification.FLAG_NO_CLEAR;
// : expanded message title
// : expanded message text
// :
baseNF.setLatestEventInfo(Lesson_10.this, "Title01", "Content01", pd);
//
//The first parameter is the unique ID for the Notification
// and the second is the Notification object.
nm.notify(Notification_ID_BASE, baseNF);
break;
case R.id.le10bt02:
//
// , , 。
// 。
//( , , , )
baseNF.setLatestEventInfo(Lesson_10.this, "Title02", "Content02", pd);
nm.notify(Notification_ID_BASE, baseNF);
break;
case R.id.le10bt03:
// baseNF
nm.cancel(Notification_ID_BASE);
break;
case R.id.le10bt04:
mediaNF = new Notification();
mediaNF.icon = R.drawable.icon;
mediaNF.tickerText = "You clicked MediaNF!";
//
mediaNF.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
//
// :
// : 、
long[] vir = {0,100,200,300};
mediaNF.vibrate = vir;
mediaNF.setLatestEventInfo(Lesson_10.this, "Title03", "Content03", pd);
nm.notify(Notification_ID_MEDIA, mediaNF);
break;
case R.id.le10bt05:
// mediaNF
nm.cancel(Notification_ID_MEDIA);
break;
case R.id.le10bt06:
nm.cancelAll();
break;
case R.id.le10bt07:
// , , 。
Notification notification = new Notification();
notification.icon = R.drawable.icon;
notification.tickerText = "Custom!";
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom);
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;
// , setLatestEventInfo()
// contentIntent
notification.contentIntent = pd;
nm.notify(3, notification);
break;
}
}
};
}
ホームページ:<?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"
android:orientation="vertical">
<Button
android:id="@+id/le10bt01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="BaseNotification"
/>
<Button
android:id="@+id/le10bt02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="UpdateBaseNotification"
/>
<Button
android:id="@+id/le10bt03"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="ClearBaseNotification"
/>
<Button
android:id="@+id/le10bt04"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="MediaNotification"
/>
<Button
android:id="@+id/le10bt05"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="ClearMediaNotification"
/>
<Button
android:id="@+id/le10bt06"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="ClearALL"
/>
<Button
android:id="@+id/le10bt07"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="CustomNotification"
/>
</LinearLayout>
カスタムビューページ:<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="3dp"
>
<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>