Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android Notification通知解析

Android Notification通知解析

編輯:關於Android編程

Notification是顯示在手機狀態欄的通知,Notification通知是具有全局性的通知,一般通過NotificationManager來進行管理.
一般運用Notification的步驟如下:

  • 1.調用getSysytemService(NOTIFICATION_SERVICE)來獲取系統的NotificationManager,進行Notification的發送和回收
  • 2.通過構造器建立一個Notification
  • 3.為Notification set各種屬性,然後builder()建立
  • 4.通過NotificationManager發送通知

下面通過一個實例來演示上面的用法,先看一張效果圖

一.獲取系統的NotificationManager

private NotificationManager nm;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //獲取系統的通知管理
    nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  }

二.為主布局的兩個按鈕添加監聽事件,然後分別設置啟動通知,並設置各種屬性和取消通知
各種屬性代碼中介紹的很詳細,具體可以參考API

啟動通知

public void send(View view){
    //用於打開通知啟動另一個Activity
    Intent intent = new Intent(MainActivity.this,OtherActivity.class);
    //用於延遲啟動
    PendingIntent pi = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
    //設置通知
    Notification notify = new Notification.Builder(this)
        //設置打開該通知,通知自動消失
        .setAutoCancel(true)
        //設置顯示在狀態欄的通知提示消息
        .setTicker("新消息")
        //設置通知欄圖標
        .setSmallIcon(R.mipmap.ic_launcher)
        //設置通知內容的標題
        .setContentTitle("一條新通知")
        //設置通知內容
        .setContentText("恭喜你通知欄測試成功")
        //設置使用系統默認的聲音,默認的led燈
        .setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_LIGHTS)
        //ALL的話則是全部使用默認,聲音,震動,閃光燈,需要添加相應權限
//        .setDefaults(ALL)
        //或者自定義聲音
        //setSound(Uri.parse())
        //設置要啟動的程序
        .setContentIntent(pi)
        //最後用build來建立通知
        .build();
    //發送當前通知,通過NotificationManager來管理
    nm.notify(1,notify);
  }

這裡用的OtherActivity是通過通知啟動的另一個Activity,為了啟動需要在清單文件中加入此Activity,並且因為用到了閃光燈和振動器,所以也需要添加相應的權限

<activity android:name=".OtherActivity"> </activity>
  <uses-permission android:name="android.permission.FLASHLIGHT"/>
  <uses-permission android:name="android.permission.VIBRATE"/>

取消通知

//取消通知
  public void closed(View view){
    nm.cancel(1);
  }

用起來相當很方便.最後附上主界面布局

<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:paddingLeft="@dimen/activity_horizontal_margin"
  android:orientation="horizontal"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">


  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="開啟通知"
    android:onClick="send"
    android:id="@+id/btnstartnotification"
     />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="關閉通知"
    android:onClick="closed"
    android:id="@+id/btnstopnotification"
     />
</LinearLayout>

以上就是關於Android Notification通知的詳細內容,希望對大家的學習有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved