6.5 Android硬體訪問服務使用反射

來源:互聯網
上載者:User

標籤:代碼   led   函數   roi   過濾   轉化   硬體   過濾器   Stub   

1、前面的例子中App為了能夠範問ILedService介面,把classes.jar匯入到應用程式中,但是我們不想把classes編進apk包裡面去,這樣導致我們的apk程式會很大(解壓縮apk會發現裡面有classes.dex和classes2.dex這兩個最佳化後的包)

因此這裡修改編譯選項:

在Android studio中

file->Project Structure->點擊左邊我們的app->點擊右邊的Dependencies,找到下面的classes,其Scope列表中的值改為Provided

 

2、app應用程式如何使用反射來訪問硬體服務,已之前寫的app為例

A、去掉import android.os.ILedService和import android.os.ServiceManager,同時新增import android.os.IBinder

B、在類中新增變數:Object proxy ;Method lec_ctrl

C、去掉iLedService =ILedService.stub.asInterface(ServiceManager.getService("led")); 並使用反射來實現該功能:

  Method getService = Class.forName("android.os.ServiceManager").getMethod("getService",String.class)//getService的第一個參數是獲得的方法名字

  Object ledService = getService.invoke(null,"led")//第一個參數應該是執行個體化對象,但是getService方法是static的,所有不用執行個體化對象,‘led’就是getService的參數,invoke雖然是調用ledService函數,這個函數返回IBinder對象,但invoke返回的是Object,這個IBinder會向上轉化為Object

  //IBinder ledService = (IBinder)getService.invoke(null,"led");//功能同上面一句

  /*到這裡為止已經實現了ServiceManager.getService("led")的功能*/

  Method asInterface= Class.forName("android.os.ILedService$Stub").getMethod("asInterface",IBinder.class);//這裡的“$”表示子類

  proxy = asInterface.invoke(null,ledService );//asInterface方法返回的是個Proxy對象,代碼裡面沒有聲明,所有這裡使用父類Object來接收,

  /*這裡為止我們實現了iLedService =ILedService.stub.asInterface(ServiceManager.getService("led"));功能*/

  /*下面我們來獲得類Proxy裡面的led_ctrl函數*/

  lec_ctrl= Class.forName("android.os.ILedService$Stub$Proxy").getMethod("led_ctrl",int.class,int.class);

  /*使用led_ctrl來點燈*/

   lec_ctrl.invoke(proxy ,0,1);

  接著我們就可以在app中使用Proxy類型對象proxy裡面的led_ctrl來操作led了//Proxy類在ILedService.java中實現1

D、修改catch異常,去掉以前添加的try...catch...代碼,在選中代碼後,ctrl+alt+T,選擇try catch 

在android studio中的log介面也可以設定過濾器,設定Tag為LedHal

6.5 Android硬體訪問服務使用反射

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.