編輯:關於android開發
Notification(狀態欄通知)
一、Notification用於狀態欄顯示通知的控件,在不同的設備上面Notification是不一樣的
二、Notification的基本布局
元素組成:
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);
後再調用下述的相關的方法進行設置,常用的方法如下:
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,表示它為一個正在進行的通知。他們通常是用來表示 一個後台任務,用戶積極參與(如播放音樂)或以某種方式正在等待,因此占用設備(如一個文件下載, 同步操作,主動網絡連接)
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):設置優先級:
五、基本使用實例
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; } } } }
Android 自定義View高級特效,神奇的貝塞爾曲線 效果圖 效果圖中我們實現了一個簡單的隨手指滑動的二階貝塞爾曲線,還有一個復雜點的,穿越所有已知點的貝塞爾曲線。
Android APK 在32bit 和64bit 的區別問題 目前64bitandroid系統也慢慢的多了,看到也有apk聲稱支持64bitsystem,然後就往裡面打
Android Bottom Sheet詳解 最近android更新了support library, 版本到了23.2, 從官方blog中我們還是可以看到幾個令人心動的
Android開發之自定義控件(二)---onLayout詳解 話說一個乞丐在看一個程序員寫程序,程序員遇到一個問題怎麼都解決不了,這時乞丐說