Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android中提示&對話框----Notification,android提示

android中提示&對話框----Notification,android提示

編輯:關於android開發

android中提示&對話框----Notification,android提示


Notification(狀態欄通知)

一、Notification用於狀態欄顯示通知的控件,在不同的設備上面Notification是不一樣的

二、Notification的基本布局

https://www.android5.online/Android/UploadFiles_5356/201603/2016031508500881.jpg

元素組成:

Icon/Photo:大圖標   Tiltle/Name:標題  Message:內容消息 Timestamp:通知的時間,默認是系統發出的時間,也可以通過setWhen()來設置  secondary Icon小圖標

三、Notification的使用基本使用流程

狀態通知欄主要涉及到了兩個類:Notification和NotificationManager

Notification:通知信息類,他裡面對應了通知欄的各個屬性

NotificationManager:是狀態欄通知的管理類,負責發通知、清楚通知等操作

 step1:獲得NotificationManager對象 NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

step2:創建一個通知欄的Builder構造類,Notification.Builder builder = new Notification.Builder(this);

step3:對Builder進行相關的設置,比如標題,內容,圖標動作

step4:調用Builder的build()方法為notification賦值

step5:調用NotificationManager的notify()方法發送通知

此外我們還可以調用NotificationManager的cancel()方法取消通知

四、設置相關的一些方法

Notification.Builder mBuilder = new Notification.Builder(this);

後再調用下述的相關的方法進行設置,常用的方法如下:

  • setContentTitle(CharSequence):設置標題
  • setContentText(CharSequence):設置內容
  • setSubText(CharSequence):設置內容下面一小行的文字
  • setTicker(CharSequence):設置收到通知時在頂部顯示的文字信息
  • setWhen(long):設置通知時間,一般設置的是收到通知時的System.currentTimeMillis()
  • setSmallIcon(int):設置右下角的小圖標,在接收到通知的時候頂部也會顯示這個小圖標
  • setLargeIcon(Bitmap):設置左邊的大圖標
  • setAutoCancel(boolean):用戶點擊Notification點擊面板後是否讓通知取消(默認不取消)
  • setDefaults(int):向通知添加聲音、閃燈和振動效果的最簡單、 使用默認(defaults)屬性,可以組合多個屬性,
    Notification.DEFAULT_VIBRATE(添加默認震動提醒);
    Notification.DEFAULT_SOUND(添加默認聲音提醒);
    Notification.DEFAULT_LIGHTS(添加默認三色燈提醒)
    Notification.DEFAULT_ALL(添加默認以上3種全部提醒)
  • setVibrate(long[]):設置振動方式,比如:
    setVibrate(new long[] {0,300,500,700});延遲0ms,然後振動300ms,在延遲500ms, 接著再振動700ms,關於Vibrate用法後面會講解!
  • setLights(int argb, int onMs, int offMs):設置三色燈,參數依次是:燈光顏色, 亮持續時間,暗的時間,不是所有顏色都可以,這跟設備有關,有些手機還不帶三色燈; 另外,還需要為Notification設置flags為Notification.FLAG_SHOW_LIGHTS才支持三色燈提醒!
  • setSound(Uri):設置接收到通知時的鈴聲,可以用系統的,也可以自己設置,例子如下:
    .setDefaults(Notification.DEFAULT_SOUND) //獲取默認鈴聲
    .setSound(Uri.parse("file:///sdcard/xx/xx.mp3")) //獲取自定義鈴聲
    .setSound(Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "5")) //獲取Android多媒體庫內的鈴聲

  • setOngoing(boolean):設置為ture,表示它為一個正在進行的通知。他們通常是用來表示 一個後台任務,用戶積極參與(如播放音樂)或以某種方式正在等待,因此占用設備(如一個文件下載, 同步操作,主動網絡連接)

  • setProgress(int,int,boolean):設置帶進度條的通知 參數依次為:進度條最大數值,當前進度,進度是否不確定 如果為確定的進度條:調用setProgress(max, progress, false)來設置通知, 在更新進度的時候在此發起通知更新progress,並且在下載完成後要移除進度條 ,通過調用setProgress(0, 0, false)既可。如果為不確定(持續活動)的進度條, 這是在處理進度無法准確獲知時顯示活動正在持續,所以調用setProgress(0, 0, true) ,操作結束時,調用setProgress(0, 0, false)並更新通知以移除指示條
  • setContentIntent(PendingIntent):PendingIntent和Intent略有不同,它可以設置執行次數, 主要用於遠程服務通信、鬧鈴、通知、啟動器、短信中,在一般情況下用的比較少。比如這裡通過 Pending啟動Activity:getActivity(Context, int, Intent, int),當然還可以啟動Service或者Broadcast PendingIntent的位標識符(第四個參數):
    FLAG_ONE_SHOT 表示返回的PendingIntent僅能執行一次,執行完後自動取消
    FLAG_NO_CREATE 表示如果描述的PendingIntent不存在,並不創建相應的PendingIntent,而是返回NULL
    FLAG_CANCEL_CURRENT 表示相應的PendingIntent已經存在,則取消前者,然後創建新的PendingIntent, 這個有利於數據保持為最新的,可以用於即時通信的通信場景
    FLAG_UPDATE_CURRENT 表示更新的PendingIntent
    使用示例:

    //點擊後跳轉Activity
    Intent intent = new Intent(context,XXX.class);  
    PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);  
    mBuilder.setContentIntent(pendingIntent)
  • setPriority(int):設置優先級:

    優先級用戶 MAX 重要而緊急的通知,通知用戶這個事件是時間上緊迫的或者需要立即處理的。 HIGH 高優先級用於重要的通信內容,例如短消息或者聊天,這些都是對用戶來說比較有興趣的。 DEFAULT 默認優先級用於沒有特殊優先級分類的通知。 LOW 低優先級可以通知用戶但又不是很緊急的事件。 MIN 用於後台消息 (例如天氣或者位置信息)。最低優先級通知將只在狀態欄顯示圖標,只有用戶下拉通知抽屜才能看到內容。 對應屬性:Notification.PRIORITY_HIGH..

五、基本使用實例

package com.example.test3;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity implements View.OnClickListener{
    private Button btn1;
    private Button btn2;
//    兩個相關類
    private NotificationManager manager;
    private Notification notification;
    private static final int NOTIFYID_1 = 1;
    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn1 = (Button) findViewById(R.id.btn1);
        btn2 = (Button) findViewById(R.id.btn2);
        btn1.setOnClickListener(this);
        btn2.setOnClickListener(this);
        manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    }

    @Override
    public void onClick(View view) {

        switch (view.getId()){
            case R.id.btn1:{
//                定義一個PendingIntent,點擊Intent可以啟動一個新的Intent
                Intent intent = new Intent(MainActivity.this,OtherActivity.class);
                PendingIntent pit =PendingIntent.getActivity(MainActivity.this,0,intent,0);
//                設置圖片文字提示方式等等
                Notification.Builder builder = new Notification.Builder(MainActivity.this);
                builder.setContentTitle("葉良辰")                        //標題
                        .setContentText("我有一百種方法讓你呆不下去~")      //內容
                        .setSubText("——記住我叫葉良辰")                    //內容下面的一小段文字
                        .setTicker("收到葉良辰發送過來的信息~")             //收到信息後狀態欄顯示的文字信息
                        .setWhen(System.currentTimeMillis())           //設置通知時間
                        .setSmallIcon(R.mipmap.ic_account)            //設置小圖標
                        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
                        .setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE)    //設置默認的三色燈與振動器
                        .setAutoCancel(true)                           //設置點擊後取消Notification
                        .setContentIntent(pit);
                notification = builder.build();
                manager.notify(NOTIFYID_1,notification);
                break;
            }
            case R.id.btn2:{
                manager.cancel(NOTIFYID_1);
                break;
            }
        }
    }
}

 

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