最近在研究AIDL,看了好多文章都是在eclipse下面進行完成的,對於喜歡用as的我來講決定在Android Studio下面實現。中間遇到很多麻煩,最後經過猜測和嘗試還好解決了。我是這麼作的。html
在eclipse裏面操做時aidl文件個java文件都放在一個包下, 客戶端直接將該包複製到本身的目錄下,而後能夠另外建另一個包放其餘代碼。但在android studio下面這樣是不能夠的,須要在src單獨建一個AIDL文件夾,將aidl文件放在裏面,java文件在另外的包下,這樣就致使服務端項目與客戶端項目的包名必須相同。在as中project至關於es的workspace,moudle至關於es的project,在eclipse裏面是兩個project在通訊,so 我猜想在as中是兩個mould在通訊,所以建了一個project(裏面自帶一個app module),讓app moulde做爲客戶端而後又另外加了一個服務端moudle 叫aidlserver。在aidlserver的project視圖下面的src下面右鍵new 選擇AIDL ,AIDL Folder ,而後將本身的aidl文件放入其中。java
下面是一個簡單的例子android
aidlserver的Girl.aidlapp
package com.test.huangxingli.aidlserver; parcelable Girl;
這是AIDLServerService.aidl eclipse
// AIDLServerService.aidl package com.test.huangxingli.aidlserver; import com.test.huangxingli.aidlserver.Girl; // Declare any non-default types here with import statements interface AIDLServerService { String sayHello(); Girl getGirl(); }
建好這兩個文件後再編寫Girl.java .注意要先寫Girl.aidl而後再寫Girl.java 剛開始時 我先寫的Girl.java 而後再寫Girl.aidl時提示不能建立重名的文件。ide
Girl.java以下:this
package com.test.huangxingli.aidlserver; import android.os.Parcel; import android.os.Parcelable; /** * Created by huangxingli on 2015/3/27. */ public class Girl implements Parcelable{ String name; int age; public Girl() { } public String getName() { return name; } public int getAge() { return age; } public void setName(String name) { this.name = name; } public void setAge(int age) { this.age = age; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(name); dest.writeInt(age); } public static final Creator<Girl> CREATOR=new Creator<Girl>() { @Override public Girl createFromParcel(Parcel source) { Girl girl=new Girl(); girl.setName(source.readString()); girl.setAge(source.readInt()); return girl; } @Override public Girl[] newArray(int size) { return new Girl[size]; } }; }
而後寫Service類MAIDLServerService,以下:spa
package com.test.huangxingli.aidlserver; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; public class MAIDLServerService extends Service { public MAIDLServerService() { } AIDLServerService.Stub binder=new AIDLServerService.Stub() { @Override public String sayHello() throws RemoteException { return "hello, i am from AIDLServerService"; } @Override public Girl getGirl() throws RemoteException { Girl girl=new Girl(); girl.setAge(25); girl.setName("lily"); return girl; } }; @Override public IBinder onBind(Intent intent) { // TODO: Return the communication channel to the service. return binder; } }
而後在manifest裏面將該Service註冊一下:以下.net
<service android:name="com.test.huangxingli.aidlserver.MAIDLServerService" android:process=":remote" > <intent-filter> <action android:name="com.test.huangxingli.aidlserver.MAIDLServerService"></action> </intent-filter> </service>
intent-filter的做用是便於隱式調用該Service.設計
as項目建立時的MainActivity.java類,裏面沒作任何處理。
下面建客戶端moulde,注意必定要將服務項目端的aidl文件夾複製到相應位置,以前我不是複製的,是新建的,包名類名都相同,可依然會編譯不過,後來將本身建的刪掉,而後複製過來就編過了,善意提醒一下,我在這浪費了很多時間,本身建的即便名字相同也編不過,各位仍是copy吧。
而後在客戶端下面將Girl.java也copy過來,再次提醒一下,客戶端的有Girl.java的包名必定要與服務端有Girl.java的包名同樣奧,不然提示找不到。
下面是個人客戶端MainActivity.java的代碼:
package com.test.huangxingli.aidlserver; import android.content.ComponentName; import android.content.Intent; import android.content.ServiceConnection; import android.os.IBinder; import android.os.RemoteException; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends ActionBarActivity { TextView textView; Button button; AIDLServerService aidlServerService; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button= (Button) findViewById(R.id.button); textView= (TextView) findViewById(R.id.textView); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent=new Intent("com.test.huangxingli.aidlserver.MAIDLServerService"); bindService(intent,connection,BIND_AUTO_CREATE); } }); } ServiceConnection connection=new ServiceConnection() { String content; @Override public void onServiceConnected(ComponentName name, IBinder service) { aidlServerService=AIDLServerService.Stub.asInterface(service); try { content=aidlServerService.sayHello()+"\n"; Girl girl=aidlServerService.getGirl(); content +="my name is "+girl.getName(); textView.setText(content); } catch (RemoteException e) { e.printStackTrace(); } } @Override public void onServiceDisconnected(ComponentName name) { aidlServerService=null; } }; }
好了到此就所有處理好了,運行一下吧。
注:此時刪掉aidlserver mould繼續運行程序,依然能正常運行。可是若是直接在一個Mould中生成後使用是不能夠達到效果的。看來對於AIDL這種技術的設計意圖,使用場景仍是要去了解一下。
源碼下載:點擊打開連接
附:aidl在項目中的位置: