實現Android通知欄進度條效果
阿新 • • 發佈:2019-02-07
/**
* 通知管理工具類
*
* @description:
* @author ldm
* @date 2016-5-3 上午9:39:56
*/
public class NotificationUtil {
private Context mContext;
// NotificationManager : 是狀態列通知的管理類,負責發通知、清楚通知等。
private NotificationManager manager;
// 定義Map來儲存Notification物件
private Map<Integer, Notification> map = null ;
public NotificationUtil(Context context) {
this.mContext = context;
// NotificationManager 是一個系統Service,必須通過 getSystemService()方法來獲取。
manager = (NotificationManager) mContext
.getSystemService(Context.NOTIFICATION_SERVICE);
map = new HashMap<Integer, Notification>();
}
public void showNotification(int notificationId) {
// 判斷對應id的Notification是否已經顯示, 以免同一個Notification出現多次
if (!map.containsKey(notificationId)) {
// 建立通知物件
Notification notification = new Notification();
// 設定通知欄滾動顯示文字
notification.tickerText = "開始下載xx檔案" ;
// 設定顯示時間
notification.when = System.currentTimeMillis();
// 設定通知顯示的圖示
notification.icon = R.drawable.ic_launcher;
// 設定通知的特性: 通知被點選後,自動消失
notification.flags = Notification.FLAG_AUTO_CANCEL;
// 設定點選通知欄操作
Intent in = new Intent(mContext, MainActivity.class);// 點選跳轉到指定頁面
PendingIntent pIntent = PendingIntent.getActivity(mContext, 0, in,
0);
notification.contentIntent = pIntent;
// 設定通知的顯示檢視
RemoteViews remoteViews = new RemoteViews(
mContext.getPackageName(),
R.layout.notification_contentview);
// 設定暫停按鈕的點選事件
Intent pause = new Intent(mContext, MainActivity.class);// 設定跳轉到對應介面
PendingIntent pauseIn = PendingIntent.getActivity(mContext, 0, in,
0);
// 這裡可以通過Bundle等傳遞引數
remoteViews.setOnClickPendingIntent(R.id.pause, pauseIn);
/********** 簡單分隔 **************************/
// 設定取消按鈕的點選事件
Intent stop = new Intent(mContext, MainActivity.class);// 設定跳轉到對應介面
PendingIntent stopIn = PendingIntent
.getActivity(mContext, 0, in, 0);
// 這裡可以通過Bundle等傳遞引數
remoteViews.setOnClickPendingIntent(R.id.cancel, stopIn);
// 設定通知的顯示檢視
notification.contentView = remoteViews;
// 發出通知
manager.notify(notificationId, notification);
map.put(notificationId, notification);// 存入Map中
}
}
/**
* 取消通知操作
*
* @description:
* @author ldm
* @date 2016-5-3 上午9:32:47
*/
public void cancel(int notificationId) {
manager.cancel(notificationId);
map.remove(notificationId);
}
public void updateProgress(int notificationId, int progress) {
Notification notify = map.get(notificationId);
if (null != notify) {
// 修改進度條
notify.contentView.setProgressBar(R.id.pBar, 100, progress, false);
manager.notify(notificationId, notify);
}
}
}
佈局檔案notification_contentview.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:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="通知欄下載測試" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" >
<ProgressBar
android:id="@+id/pBar"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="4dp"
android:layout_weight="1" />
<Button
android:id="@+id/pause"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_weight="2"
android:text="暫停" />
<Button
android:id="@+id/cancel"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_weight="2"
android:text="取消" />
</LinearLayout>
</LinearLayout>
Activity中簡單測試發通知,專案中根據需要使用,比如檔案下載中要更新進度,取消時進行對應操作等。
/**
* Notification是Android專案中具體的狀態列通知物件,可以設定icon、文字、提示聲音、振動等等引數。
* 常用屬性:
* icon:設定通知上顯示的圖示
* tickerText:設定通知中滾動顯示的文字
* text:設定通知的內容
* flags:設定通知的特性
* defaults:設定通知預設效果
* when:設定通知顯示的時間
* contentView:設定通知顯示的內容檢視
* sound:設定通知的聲音
* contentIntent:設定點選通知時的跳轉等操作
*/
/**
* 在通知欄中實現下載進度條樣式展示Demo
*
* @description:
* @author ldm
* @date 2016-5-3 上午8:40:37
*/
public class MainActivity extends ActionBarActivity {
private NotificationUtil mNotificationUtil;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNotificationUtil = new NotificationUtil(this);
findViewById(R.id.send).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mNotificationUtil.showNotification(100);// 測試發出通知
}
});
}
}