兩個Service之間相互監視的實現

来源:http://www.cnblogs.com/l2rf/archive/2016/10/13/5955530.html
-Advertisement-
Play Games

在實際開發中可能需要用到兩個Service相互監視的情況,本示例就是實現此功能以作參考。 服務B: IBridgeInterface.aidl 界面: AndroidManifest.xml 由於涉及到跨進程,onServiceConnected() 方法中使用 而不能直接類型轉換 onStartC ...


 

在實際開發中可能需要用到兩個Service相互監視的情況,本示例就是實現此功能以作參考。

服務A:
 1 public class ServiceA extends Service {
 2 
 3 
 4     private static final String TAG = ServiceA.class.getSimpleName();
 5     MyBinder mBinder;
 6     MyServiceConnection mServiceConnection;
 7     PendingIntent mPendingIntent;
 8 
 9     @Override
10     public void onCreate() {
11         super.onCreate();
12 
13         if(mBinder==null)
14         {
15             mBinder=new MyBinder();
16         }
17         mServiceConnection=new MyServiceConnection();
18     }
19 
20     @Override
21     public int onStartCommand(Intent intent, int flags, int startId) {
22         ServiceA.this.bindService(new Intent(ServiceA.this,ServiceB.class),mServiceConnection, Context.BIND_IMPORTANT);
23         mPendingIntent=PendingIntent.getService(this,0,intent,0);
24         Notification.Builder builder=new Notification.Builder(this);
25         builder.setTicker("守護服務A啟動中")
26                 .setContentText("我是來守護服務B的")
27                 .setContentTitle("守護服務A")
28                 .setSmallIcon(R.mipmap.ic_launcher)
29                 .setContentIntent(mPendingIntent)
30                 .setWhen(System.currentTimeMillis());
31         Notification notification=builder.build();
32 
33         startForeground(startId,notification);
34 
35 
36         return START_STICKY;
37     }
38 
39     @Override
40     public IBinder onBind(Intent intent) {
41         return mBinder;
42     }
43 
44     public class MyBinder extends IBridgeInterface.Stub {
45 
46         @Override
47         public String getName() throws RemoteException {
48             return "name:"+TAG;
49         }
50     }
51 
52     class MyServiceConnection implements ServiceConnection {
53 
54         @Override
55         public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
56             String name=null;
57             try {
58                 name= IBridgeInterface.Stub.asInterface(iBinder).getName();
59             } catch (RemoteException e) {
60                 e.printStackTrace();
61             }
62 
63 
64             Toast.makeText(ServiceA.this,name+"連接成功",Toast.LENGTH_SHORT).show();
65         }
66 
67         @Override
68         public void onServiceDisconnected(ComponentName componentName) {
69             Toast.makeText(ServiceA.this,TAG+"斷開連接",Toast.LENGTH_SHORT).show();
70 
71             ServiceA.this.startService(new Intent(ServiceA.this,ServiceB.class));
72 
73             ServiceA.this.bindService(new Intent(ServiceA.this,ServiceB.class),mServiceConnection, Context.BIND_IMPORTANT);
74 
75         }
76     }
77 
78 
79 }

服務B:

 1 public class ServiceB extends Service {
 2 
 3     private static final String TAG = ServiceB.class.getSimpleName();
 4     private PendingIntent mPendingIntent;
 5     private MyBinder mBinder;
 6     private MyServiceConnection mServiceConnection;
 7 
 8     @Override
 9     public IBinder onBind(Intent intent) {
10         return mBinder;
11     }
12 
13     @Override
14     public void onCreate() {
15         super.onCreate();
16         if (mBinder == null) {
17             mBinder = new MyBinder();
18         }
19 
20         mServiceConnection = new MyServiceConnection();
21     }
22 
23     @Override
24     public int onStartCommand(Intent intent, int flags, int startId) {
25         this.bindService(new Intent(ServiceB.this, ServiceA.class), mServiceConnection, Context.BIND_IMPORTANT);
26         mPendingIntent = PendingIntent.getService(this, 0, intent, 0);
27         Notification.Builder builder = new Notification.Builder(this);
28 
29         builder.setTicker("守護服務B啟動中")
30                 .setContentText("我是來守護服務A的")
31                 .setContentTitle("守護服務B")
32                 .setSmallIcon(R.mipmap.ic_launcher)
33                 .setContentIntent(mPendingIntent)
34                 .setWhen(System.currentTimeMillis());
35         Notification notification = builder.build();
36         startForeground(startId, notification);
37 
38         return START_STICKY;
39     }
40 
41     public class MyBinder extends IBridgeInterface.Stub {
42 
43         @Override
44         public String getName() throws RemoteException {
45             return "name:"+TAG;
46         }
47     }
48 
49     class MyServiceConnection implements ServiceConnection {
50 
51         @Override
52         public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
53             String name=null;
54             try {
55                 name=IBridgeInterface.Stub.asInterface(iBinder).getName();
56             } catch (RemoteException e) {
57                 e.printStackTrace();
58             }
59             Toast.makeText(ServiceB.this, name + "連接成功", Toast.LENGTH_SHORT).show();
60         }
61 
62         @Override
63         public void onServiceDisconnected(ComponentName componentName) {
64             Toast.makeText(ServiceB.this, TAG + "斷開連接", Toast.LENGTH_SHORT).show();
65 
66             ServiceB.this.startService(new Intent(ServiceB.this, ServiceA.class));
67             ServiceB.this.bindService(new Intent(ServiceB.this, ServiceA.class), mServiceConnection, Context.BIND_IMPORTANT);
68         }
69     }
70 
71 
72 }

IBridgeInterface.aidl

1 interface IBridgeInterface {
2     String getName();
3 }

界面:

 1 public class MainActivity extends Activity {
 2 
 3 
 4     @Override
 5     protected void onCreate(Bundle savedInstanceState) {
 6         super.onCreate(savedInstanceState);
 7         setContentView(R.layout.activity_main);
 8 
 9         startService(new Intent(this, ServiceA.class));
10         startService(new Intent(this, ServiceB.class));
11     }
12 
13 }

AndroidManifest.xml

1         <service android:name=".services.ServiceA" />
2         <service
3             android:name=".services.ServiceB"
4             android:process=":remote" />

 

由於涉及到跨進程,onServiceConnected() 方法中使用

IBridgeInterface.Stub.asInterface(iBinder).getName();

而不能直接類型轉換

((ServiceA.MyBinder)iBinder).getName();

 

onStartCommand

onStartCommand() 方法必須返回整型數。整型數是一個值,用於描述系統應該如何在服務終止的情況下繼續運行服務。

返回的值必須是以下常量之一:

START_NOT_STICKY

  如果系統在 onStartCommand() 返回後終止服務,則除非有掛起 Intent 要傳遞,否則系統不會重建服務。

START_STICKY

  如果系統在 onStartCommand() 返回後終止服務,則會重建服務並調用 onStartCommand(),但絕對不會重新傳遞最後一個 Intent。相反,除非有掛起 Intent 要啟動服務(在這種情況下,將傳遞這些 Intent ),否則系統會通過空 Intent 調用 onStartCommand()。這適用於不執行命令、但無限期運行並等待作業的媒體播放器(或類似服務)。

START_REDELIVER_INTENT

  如果系統在 onStartCommand() 返回後終止服務,則會重建服務,並通過傳遞給服務的最後一個 Intent 調用 onStartCommand()。任何掛起 Intent 均依次傳遞。這適用於主動執行應該立即恢復的作業(例如下載文件)的服務。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • XSS是我們比較熟悉的一種攻擊方式,包括存儲型XSS、反射型XSS、DOM XSS等,但UXSS(通用型XSS)另外一種不同的漏洞類型,主要體現在漏洞的載體和影響範圍上。XSS問題源於某一個WEB站點或應用存在安全問題,但受同源策略的約束,攻擊者只能訪問存在漏洞的站點的回話信息,無法訪問其他域的回話... ...
  • 昨天提交給蘋果審核版本的時候出現了: 從網上找了各種方法,最後還是給解決了,記錄一下開發之路走過的坑。 首先,我用了xcode8的gost版本開發了項目一周,後來聽說這版本不能提交審核,然後給更新了xcode8,繼續打包,上傳還是同樣的錯誤。剛開始也是把info.plist文件拖出來,刪除掉工程里的 ...
  • (1)自身類作為事件監聽器 package cn.edu.gdmec.s07150745.work5; import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View; ...
  • 伺服器上的項目是使用svn進行管理的。 本來本地的項目也是通過svn進行管理的,但是後來使用svn的分支功能進行項目的測試/新功能等等時,總是會出現各種各樣的問題,遂轉投git。 因為git的分支機制和svn的分支機制不一樣,git的更加靈活,強大和穩定。 首先建立一個本地化的git倉庫(需要在空文 ...
  • 使用方法: 繼承這個activity,重寫onclick()方法 ...
  • 項目中上拉刷新和下拉載入一直都是比較常見的;以前一般都是重寫ListView或直接用PullToRefreshListView的框架;最近嘗試用RecyclerView來實現下拉載入上拉刷新也是不錯的。 如圖是Demo的效果圖: 第一個效果圖是用RecyclerView實現加的幾個靜態數據; 第二個 ...
  • 視圖容器scroll-view :官方文檔 Demo Code var order = ['red', 'yellow', 'blue', 'green', 'red'] Page({ data: { toView: 'red', scrollTop: 100 }, upper: function( ...
  • 首先確定sdk是最新的 其次接下來是檢查xml文件,文件名不能大寫 如果xml文件太多,可以clean項目,然後觀察 Console 信息 修改Console提示的xml的錯誤後 重新clean 項目 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...