上次咱們講到如何實現一個可更新的進度通知,實現的方式是啓動一個線程模擬一個下載任務,而後根據任務進度向UI線程消息隊列發送進度消息,UI線 程根據進度消息更新通知的UI界面。但是在實際應用中,咱們通常會將上傳、下載等比較耗時的後臺任務以服務的形式運行,更新進度通知也是交由後臺服務來完 成的。 不過有的時候,除了在通知裏面顯示進度信息,咱們也要在Activity中顯示當前進度,不少下載系統都有這樣的功能,例如Android自帶瀏覽器的下 載系統、QQ瀏覽器的下載系統等等。那麼如何實現這一功能呢?實現方式有不少,咱們今天先來介紹其中的一種:在Activity中主動監聽服務的進度。 html
具體的思路是:讓Activity與後臺服務綁定,經過中間對象Binder的實例操做後臺服務,獲取進度信息和服務的狀態以及在必要的時候中止服務。 java
關於服務的生命週期,若是有些朋友們不太熟悉的話,能夠去查閱相關資料;若是之後有時間,我可能也會總結一些與服務相關的知識。 android
爲了讓你們對這個過程更清晰一些,在上代碼以前,咱們先來看看幾個截圖: 瀏覽器
整個過程如上圖所示:在咱們點擊開始按鈕後,下載任務開始運行,同事更新通知上的進度,當前Activity也從後臺服務獲取進度信息,顯示到按鈕下方;當咱們點擊通知後,跳轉到下載管理界面,在這裏咱們也從後臺服務獲取進度,還能夠作取消任務等操做。 app
瞭解了整個過程的狀況後,咱們就來分析一下具體的代碼實現。 ide
首先是/res/main.xml佈局文件: 佈局
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="start"
- android:onClick="start"/>
- <TextView
- android:id="@+id/text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center"/>
- </LinearLayout>
其中Button是用來啓動服務的,TextView是用來顯示進度信息的。 this
而後再在看一下MainActivity.java的代碼: spa
- package com.scott.notification;
-
- import android.app.Activity;
- import android.content.ComponentName;
- import android.content.Context;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.IBinder;
- import android.os.Message;
- import android.view.View;
- import android.widget.TextView;
-
- public class MainActivity extends Activity {
-
- private DownloadService.DownloadBinder binder;
- private TextView text;
-
- private boolean binded;
-
- private Handler handler = new Handler() {
- public void handleMessage(android.os.Message msg) {
- int progress = msg.arg1;
- text.setText("downloading..." + progress + "%");
- };
- };
-
- private ServiceConnection conn = new ServiceConnection() {
-
- @Override
- public void onServiceConnected(ComponentName name, IBinder service) {
- binder = (DownloadService.DownloadBinder) service;
- binded = true;
- // 開始下載
- binder.start();
- // 監聽進度信息
- listenProgress();
- }
-
- @Override
- public void onServiceDisconnected(ComponentName name) {
- }
- };
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- text = (TextView) findViewById(R.id.text);
- }
-
- @Override
- protected void onDestroy() {
- super.onDestroy();
- if (binded) {
- unbindService(conn);
- }
- }
-
- public void start(View view) {
- if (binded) {
- binder.start();
- listenProgress();
- return;
- }
- Intent intent = new Intent(this, DownloadService.class);
- startService(intent); //若是先調用startService,則在多個服務綁定對象調用unbindService後服務仍不會被銷燬
- bindService(intent, conn, Context.BIND_AUTO_CREATE);
- }
-
- /**
- * 監聽進度
- */
- private void listenProgress() {
- new Thread() {
- public void run() {
- while (!binder.isCancelled() && binder.getProgress() <= 100) {
- int progress = binder.getProgress();
- Message msg = handler.obtainMessage();
- msg.arg1 = progress;
- handler.sendMessage(msg);
- if (progress == 100) {
- break;
- }
- try {
- Thread.sleep(200);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- }
- };
- }.start();
- }
- }
咱們能夠看到,當點擊開始按鈕後,以bindService的方式綁定服務,用獲取到的DownloadService.DownloadBinder實例啓動服務,並在Activity中啓動一個線程監聽服務的進度信息,及時的顯示到按鈕下方。
服務類DownloadService.java代碼以下: .net
- package com.scott.notification;
-
- import android.app.Notification;
- import android.app.NotificationManager;
- import android.app.PendingIntent;
- import android.app.Service;
- import android.content.Context;
- import android.content.Intent;
- import android.os.Binder;
- import android.os.Handler;
- import android.os.IBinder;
- import android.os.Message;
- import android.widget.RemoteViews;
-
- public class DownloadService extends Service {
-
- private static final int NOTIFY_ID = 0;
- private boolean cancelled;
- private int progress;
-
- private Context mContext = this;
-
- private NotificationManager mNotificationManager;
- private Notification mNotification;
-
- private DownloadBinder binder = new DownloadBinder();
-
- private Handler handler = new Handler() {
- public void handleMessage(android.os.Message msg) {
- switch (msg.what) {
- case 1:
- int rate = msg.arg1;
- if (rate < 100) {
- // 更新進度
- RemoteViews contentView = mNotification.contentView;
- contentView.setTextViewText(R.id.rate, rate + "%");
- contentView.setProgressBar(R.id.progress, 100, rate, false);
- } else {
- // 下載完畢後變換通知形式
- mNotification.flags = Notification.FLAG_AUTO_CANCEL;
- mNotification.contentView = null;
- Intent intent = new Intent(mContext, FileMgrActivity.class);
- // 告知已完成
- intent.putExtra("completed", "yes");
- //更新參數,注意flags要使用FLAG_UPDATE_CURRENT
- PendingIntent contentIntent = PendingIntent.getActivity(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
- mNotification.setLatestEventInfo(mContext, "下載完成", "文件已下載完畢", contentIntent);
- stopSelf();//停掉服務自身
- }
-
- // 最後別忘了通知一下,不然不會更新
- mNotificationManager.notify(NOTIFY_ID, mNotification);
- break;
- case 0:
- // 取消通知
- mNotificationManager.cancel(NOTIFY_ID);
- break;
- }
- };
- };
-
- @Override
- public void onCreate() {
- super.onCreate();
- mNotificationManager = (NotificationManager) getSystemService(android.content.Context.NOTIFICATION_SERVICE);
- }
-
- @Override
- public IBinder onBind(Intent intent) {
- // 返回自定義的DownloadBinder實例
- return binder;
- }
-
- @Override
- public void onDestroy() {
- super.onDestroy();
- cancelled = true; // 取消下載線程
- }
-
- /**
- * 建立通知
- */
- private void setUpNotification() {
- int icon = R.drawable.down;
- CharSequence tickerText = "開始下載";
- long when = System.currentTimeMillis();
- mNotification = new Notification(icon, tickerText, when);
-
- // 放置在"正在運行"欄目中
- mNotification.flags = Notification.FLAG_ONGOING_EVENT;
-
- RemoteViews contentView = new RemoteViews(mContext.getPackageName(), R.layout.download_notification_layout);
- contentView.setTextViewText(R.id.fileName, "AngryBird.apk");
- // 指定個性化視圖
- mNotification.contentView = contentView;
-
- Intent intent = new Intent(this, FileMgrActivity.class);
- PendingIntent contentIntent = PendingIntent.getActivity(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
- // 指定內容意圖
- mNotification.contentIntent = contentIntent;
- mNotificationManager.notify(NOTIFY_ID, mNotification);
- }
-
- /**
- * 下載模塊
- */
- private void startDownload() {
- cancelled = false;
- int rate = 0;
- while (!cancelled && rate < 100) {
- try {
- // 模擬下載進度
- Thread.sleep(500);
- rate = rate + 5;
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- Message msg = handler.obtainMessage();
- msg.what = 1;
- msg.arg1 = rate;
- handler.sendMessage(msg);
-
- this.progress = rate;
- }
- if (cancelled) {
- Message msg = handler.obtainMessage();
- msg.what = 0;
- handler.sendMessage(msg);
- }
- }
-
- /**
- * DownloadBinder中定義了一些實用的方法
- *
- * @author user
- *
- */
- public class DownloadBinder extends Binder {
-
- /**
- * 開始下載
- */
- public void start() {
- //將進度歸零
- progress = 0;
- //建立通知
- setUpNotification();
- new Thread() {
- public void run() {
- //下載
- startDownload();
- };
- }.start();
- }
-
- /**
- * 獲取進度
- *
- * @return
- */
- public int getProgress() {
- return progress;
- }
-
- /**
- * 取消下載
- */
- public void cancel() {
- cancelled = true;
- }
-
- /**
- * 是否已被取消
- *
- * @return
- */
- public boolean isCancelled() {
- return cancelled;
- }
- }
- }
咱們看到,在服務中有個DownloadBinder類,它繼承自Binder,定義了一系列方法,獲取服務狀態以及操做當前服務,剛纔咱們在 MainActivity中獲取的就是這個類的實例。最後,不要忘了在AndroidManifest.xml中配置該服務。關於進度通知的佈局文件/res/layout/download_notification_layout.xml,在這裏就不需貼出了,朋友們能夠參考一下Notification使用詳解之二中進度通知佈局的具體代碼。
下面咱們來介紹一下FileMgrActivity,它就是點擊通知以後跳轉到的界面,佈局文件/res/filemgr.xml以下:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:max="100"
- android:progress="0"/>
- <Button
- android:id="@+id/cancel"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="cancel"
- android:onClick="cancel"/>
- </LinearLayout>
咱們來看一下FileMgrActivity.java具體的代碼:
- package com.scott.notification;
-
- import android.app.Activity;
- import android.content.ComponentName;
- import android.content.Context;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.IBinder;
- import android.os.Message;
- import android.view.View;
- import android.widget.Button;
- import android.widget.ProgressBar;
-
- public class FileMgrActivity extends Activity {
- private DownloadService.DownloadBinder binder;
- private ProgressBar progressBar;
- private Button cancel;
- private boolean binded;
-
- private Handler handler = new Handler() {
- public void handleMessage(android.os.Message msg) {
- int progress = msg.arg1;
- progressBar.setProgress(progress);
- if (progress == 100) {
- cancel.setEnabled(false);
- }
- };
- };
-
- private ServiceConnection conn = new ServiceConnection() {
-
- @Override
- public void onServiceConnected(ComponentName name, IBinder service) {
- binder = (DownloadService.DownloadBinder) service;
- //監聽進度信息
- listenProgress();
- }
-
- @Override
- public void onServiceDisconnected(ComponentName name) {
- }
- };
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.filemgr);
- progressBar = (ProgressBar) findViewById(R.id.progress);
- cancel = (Button) findViewById(R.id.cancel);
-
- if ("yes".equals(getIntent().getStringExtra("completed"))) {
- //若是已完成,則不需再綁定service
- progressBar.setProgress(100);
-
- cancel.setEnabled(false);
- } else {
- //綁定service
- Intent intent = new Intent(this, DownloadService.class);
- bindService(intent, conn, Context.BIND_AUTO_CREATE);
- binded = true;
- }
- }
-
- @Override
- protected void onDestroy() {
- super.onDestroy();
- //若是是綁定狀態,則取消綁定
- if (binded) {
- unbindService(conn);
- }
- }
-
- public void cancel(View view) {
- //取消下載
- binder.cancel();
- }
-
- /**
- * 監聽進度信息
- */
- private void listenProgress() {
- new Thread() {
- public void run() {
- while (!binder.isCancelled() && binder.getProgress() <= 100) {
- int progress = binder.getProgress();
- Message msg = handler.obtainMessage();
- msg.arg1 = progress;
- handler.sendMessage(msg);
- try {
- Thread.sleep(200);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- }
- };
- }.start();
- }
- }
咱們發現,它和MainActivity實現方式很類似,恩,他們都是經過和服務綁定後獲取到的Binder對象來跟服務通訊的,都是主動和服務打招呼來獲取信息和控制服務的。
這兩個Activity和一個Service彷佛像是複雜的男女關係,兩個男人同時喜歡一個女人,都經過本身的手段試圖從那個女人獲取愛情,兩個男人都很主動,那個女人顯得很被動。
以上就是今天的所有內容,也許朋友們會有疑問,能不能讓Service主動告知Activity當前的進度信息呢?答案是能夠。下一次,我就會和你們分享一下,如何變Service爲主動方,讓一個女人腳踏兩隻船的方式。