1. 程式人生 > >安卓中Notification通知的詳解

安卓中Notification通知的詳解

     在訊息通知時,我們經常用到兩個元件Toast和Notification。特別是重要的和需要長時間顯示的資訊,用Notification就最 合適不過了。當有訊息通知時,狀態列會顯示通知的圖示和文字,通過下拉狀態列,就可以看到通知資訊了,Android這一創新性的UI元件贏得了使用者的一 致好評,就連蘋果也開始模仿了。今天我們就結合例項,探討一下Notification具體的使用方法。  首先說明一下我們需要實現的功能是:在程式啟動時,發出一個通知,這個通知在軟體執行過程中一直存在,相當於qq的托盤一樣;

然後再演示一下普通的通知和自定義檢視通知。  那我們就先建立一個安卓專案,

然後編輯/res/layout/main.xml檔案,程式碼如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/black"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:text="@string/title"
        android:textColor="#0f0"
        android:textSize="20sp"
        android:textStyle="bold" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp"
        android:layout_marginTop="30dp"
        android:onClick="normal"
        android:text="@string/notification"
        android:textColor="#0f0"
        android:textSize="20sp" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp"
        android:layout_marginTop="30dp"
        android:onClick="custom"
        android:text="@string/custom"
        android:textColor="#0f0"
        android:textSize="20sp" />

</LinearLayout>
上面的佈局很簡單。有兩個按鈕分別用於啟動普通的notification和自定義的notification

接下來自定義一個佈局用於顯示自定義的通知的

<?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:background="#000"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/iv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:contentDescription="@string/action_settings"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:textColor="#0f0"
        android:textSize="15sp" />

</LinearLayout>


接下來就是上程式碼。

package com.itfom.notification;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.widget.RemoteViews;

public class MainActivity extends Activity {

	private NotificationManager mNotificationManager;
	private Context context;
	private Notification notification;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}

	//普通的通知
	@SuppressWarnings("deprecation")
	public void normal(View v){
		//建立通知
		createNotification("普通的通知");
		//把通知放在正在執行欄目中
		notification.flags|=Notification.FLAG_ONGOING_EVENT;
		//設定預設聲音
		notification.defaults|=Notification.DEFAULT_SOUND;
		//設定預設震動
		notification.defaults|=Notification.DEFAULT_VIBRATE;
		//設定預設LED燈提醒
		notification.defaults|=Notification.DEFAULT_LIGHTS;
		//設定點選後通知自動清除
		notification.defaults|=Notification.FLAG_AUTO_CANCEL;

		String textTitle="Notification示例";
		String textContent="程式正在執行,點選此處跳轉到演示介面";

		Intent it=new Intent(context, MainActivity.class);
		PendingIntent pendintent=PendingIntent.getActivity(context, 0, it, 0);
		notification.setLatestEventInfo(context, textTitle, textContent, pendintent);
		mNotificationManager.notify(0, notification);
	}

	//自定義的通知
	public void custom(View v){
		//建立通知
		createNotification("個性化的通知");
		//自定義通知的聲音
		notification.sound=Uri.parse(Environment.getExternalStorageDirectory()+"/non.mp3");
		//自定義震動引數分別為多長時間開始震動、第一次震動的時間、停止震動的時間
		long[] vibrate={0,100,200,300};
		notification.vibrate=vibrate;
		//自定義閃光燈的方式
		notification.ledARGB=0xff00ff00;
		notification.ledOnMS=500;
		notification.ledOffMS=500;
		notification.flags|=Notification.FLAG_SHOW_LIGHTS;

		RemoteViews contentView=new RemoteViews(this.getPackageName(),R.layout.notify);
		contentView.setTextViewText(R.id.tv, "這是個性化的通知");
		//指定個性化的檢視
		notification.contentView=contentView;
		Intent it=new Intent(context, MainActivity.class);
		PendingIntent pendintent=PendingIntent.getActivity(context, 0, it, 0);
		//指定內容檢視
		notification.contentIntent=pendintent;
		mNotificationManager.notify(1, notification);
	}
	//自定義一個方法建立通知
	@SuppressWarnings("deprecation")
	public Notification createNotification(String text){
		context = this;
		mNotificationManager=(NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
		int icon=R.drawable.ic_launcher;
		long when=System.currentTimeMillis();
		return notification = new Notification(icon, text, when);
	}

	//重寫onBackpressed事件
	@Override
	public void onBackPressed() {
		super.onBackPressed();
		finish();
		//取消通知
		mNotificationManager.cancel(0);
		android.os.Process.killProcess(android.os.Process.myPid());
		System.exit(0);
	}
}
上面的程式碼我們定義了一個方法createNotification(String text).該方法是用於建立一個通知。注意之所以這樣寫是因為。不管是普通的通知還是自定義的通知。前面的建立過程都是一樣的。然後我們實現了兩個按鈕的點選事件。

執行結果如下所示:


當點選兩個按鈕時會出現以下的情況:

注 :這裡是有聲音效果的。如果手機支援閃光,還有LED效果