欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android Notification通知解析

 更新時(shí)間:2016年01月24日 13:23:32   投稿:lijiao  
這篇文章主要針對(duì)Android Notification通知進(jìn)行解析,本文主要介紹的是notification通知的使用方法,感興趣的小伙伴們可以參考一下

Notification是顯示在手機(jī)狀態(tài)欄的通知,Notification通知是具有全局性的通知,一般通過NotificationManager來進(jìn)行管理.
一般運(yùn)用Notification的步驟如下:

  • 1.調(diào)用getSysytemService(NOTIFICATION_SERVICE)來獲取系統(tǒng)的NotificationManager,進(jìn)行Notification的發(fā)送和回收
  • 2.通過構(gòu)造器建立一個(gè)Notification
  • 3.為Notification set各種屬性,然后builder()建立
  • 4.通過NotificationManager發(fā)送通知

下面通過一個(gè)實(shí)例來演示上面的用法,先看一張效果圖

一.獲取系統(tǒng)的NotificationManager

private NotificationManager nm;

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

二.為主布局的兩個(gè)按鈕添加監(jiān)聽事件,然后分別設(shè)置啟動(dòng)通知,并設(shè)置各種屬性和取消通知
各種屬性代碼中介紹的很詳細(xì),具體可以參考API

啟動(dòng)通知

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

這里用的OtherActivity是通過通知啟動(dòng)的另一個(gè)Activity,為了啟動(dòng)需要在清單文件中加入此Activity,并且因?yàn)橛玫搅碎W光燈和振動(dòng)器,所以也需要添加相應(yīng)的權(quán)限

<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);
  }

用起來相當(dāng)很方便.最后附上主界面布局

<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="關(guān)閉通知"
    android:onClick="closed"
    android:id="@+id/btnstopnotification"
     />
</LinearLayout>

以上就是關(guān)于Android Notification通知的詳細(xì)內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。

相關(guān)文章

最新評(píng)論