實(shí)例講解Android中的AIDL內(nèi)部進(jìn)程通信接口使用
首先描述下我們想要實(shí)現(xiàn)的內(nèi)容,我們希望在一個(gè)應(yīng)用中通過(guò)點(diǎn)擊按鈕,去操作另一個(gè)進(jìn)程中應(yīng)用的音樂播放功能。
如圖,我們點(diǎn)擊“播放”時(shí),系統(tǒng)就會(huì)去遠(yuǎn)程調(diào)用我們提供的一個(gè)service(與當(dāng)前service不是同一個(gè)應(yīng)用哦),然后操作service中的音樂播放,點(diǎn)擊“停止”則會(huì)終止播放。想要重新播放的話,必須先點(diǎn)“銷毀service”,再點(diǎn)播放按鈕哦。(至于這里為什么要先點(diǎn)銷毀按鈕才能播放,完全是為了給大家展示下,遠(yuǎn)程調(diào)用service時(shí),怎么去解綁service)。
在這個(gè)例子中,我們用到了一個(gè)非常重要的概念,AIDL。
AIDL(android interface definition language)android接口描述語(yǔ)言,其主要的作用就是允許我們?cè)诓煌倪M(jìn)程間進(jìn)行通信。
我們都知道每個(gè)應(yīng)用程序都運(yùn)行在各自的進(jìn)程中,并且android平臺(tái)是不允許不同進(jìn)程間進(jìn)行直接的對(duì)象數(shù)據(jù)等傳遞的。如果我們非要進(jìn)行進(jìn)程間的通訊,那么我們就必須將我們的數(shù)據(jù)對(duì)象分解成一個(gè)個(gè)微小的、可以被操作系統(tǒng)理解的數(shù)據(jù)單元,然后有序的通過(guò)進(jìn)程邊界的檢查。
如果讓我們自己實(shí)現(xiàn),那么這個(gè)過(guò)程都愁死一批批的程序人了。幸好android,為我們解決了這個(gè)問(wèn)題,這就是AIDL出現(xiàn)的原因了。
AIDL (Android Interface Definition Language)是一種IDL 語(yǔ)言,用于生成可以在Android設(shè)備上兩個(gè)進(jìn)程之間進(jìn)行進(jìn)程間通信(IPC)的代碼。如果在一個(gè)進(jìn)程中(例如Activity)要調(diào)用另一個(gè)進(jìn)程中(例如Service)對(duì)象的操作,就可以使用AIDL生成可序列化的參數(shù)。
AIDL IPC機(jī)制是面向接口的,像COM或Corba一樣,但是更加輕量級(jí)。它是使用代理類在客戶端和實(shí)現(xiàn)端傳遞數(shù)據(jù)。
注意:AIDL只支持方法,不能定義靜態(tài)成員,并且方法也不能有類似public等的修飾符;AIDL運(yùn)行方法有任何類型的參數(shù)和返回值,在java的類型中,以下的類型使用時(shí)不需要導(dǎo)入包(import),基本數(shù)據(jù)類型、String、Map、List.當(dāng)然為了避免出錯(cuò),建議只要使用了,就導(dǎo)入包。
使用AIDL的步驟:
服務(wù)端(提供服務(wù)):
第一步:定義一個(gè)*.aidl文件,該文件里是符合aidl語(yǔ)言規(guī)范的接口定義,里面定義了外部應(yīng)用可以訪問(wèn)的方法。當(dāng)我們保存該文件的時(shí)候,eclipse會(huì)自動(dòng)為我們?cè)趃en文件夾下生成一個(gè)相應(yīng)的java接口文件。例如RemoteServiceInterface.java
第二步:定義一個(gè)自己的service, 并將其注冊(cè)到androidManifest.xml文件中,例如:
<service android:name="MyRemoteService"> <intent-filter> <action android:name="cn.com.chenzheng_java.remote"/> </intent-filter> </service>
注意這里一定要提供一個(gè)intent-filter,我們的客戶端進(jìn)程就是通過(guò)該action訪問(wèn)到服務(wù)端進(jìn)程的哦。
我們都知道,在實(shí)現(xiàn)自己的service時(shí),為了其他應(yīng)用可以通過(guò)bindService來(lái)和我們的service進(jìn)行交互,我們都要實(shí)現(xiàn)service中的onBind()方法,并且返回一個(gè)繼承了Binder的內(nèi)部類;在這里,eclipse自動(dòng)為我們生成的RemoteServiceInterface.java中有一個(gè)實(shí)現(xiàn)了Binder的內(nèi)部類,RemoteServiceInterface.Stub。AIDL要求我們,在這里不能再直接去實(shí)現(xiàn)Binder類了,而是去實(shí)現(xiàn),AIDL提供給我們的Stub類。 實(shí)現(xiàn)stub類的同時(shí),AIDL還要求我們同時(shí)實(shí)現(xiàn)我們?cè)诮涌谥卸x的各種服務(wù)的具體實(shí)現(xiàn)。至此為止,我們的服務(wù)端已經(jīng)和我們的aidl文件綁定到一起了哦。
客戶端:
第一步:客戶端要想使用該服務(wù),肯定要先知道我們的服務(wù)在aidl文件中到底對(duì)外提供了什么服務(wù),對(duì)吧?所以,第一步,我們要做的就是,將aidl文件拷貝一份到客戶端的程序中(這里一定要注意,包路徑要和服務(wù)端的保持一致哦,例如服務(wù)端為cn.com.chenzheng_java.remote.a.aidl,那么在客戶端這邊也應(yīng)該是這個(gè)路徑)。
第二步:我們都知道,想要和service交互,我們要通過(guò)bindService方法,該方法中有一個(gè)ServiceConnection類型的參數(shù)。而我們的主要代碼便是在該接口的實(shí)現(xiàn)中。
第三步:在ServiceConnection實(shí)現(xiàn)類的onServiceConnected(ComponentName name, IBinder service)方法中通過(guò)類似remoteServiceInterface = RemoteServiceInterface.Stub.asInterface(service);方式就可以獲得遠(yuǎn)程服務(wù)端提供的服務(wù)的實(shí)例,然后我們就可以通過(guò)remoteServiceInterface 對(duì)象調(diào)用接口中提供的方法進(jìn)行交互了。(這里的關(guān)鍵是通過(guò)*.Stub.asInterface(service);方法獲取一個(gè)aidl接口的實(shí)例哦)
我們前面在服務(wù)端中說(shuō)過(guò)了,必須提供一個(gè)intent-filter來(lái)匹配請(qǐng)求是否合法,所以我們?cè)诳蛻舳嗽L問(wèn)服務(wù)的時(shí)候,還必須傳遞包含了匹配action的Intent哦。
下邊整體是代碼:
遠(yuǎn)程服務(wù)端:
RemoteServiceInterface.aidl
package cn.com.chenzheng_java.remote; /**AIDL的語(yǔ)法和Interface的語(yǔ)法稍微有些不同, *它里面只能有方法,并且java中的那些修飾詞如public等,在這里是不支持的. *當(dāng)我們?cè)趀clipse中添加一個(gè)以.aidl結(jié)尾的AIDL文件時(shí),如果你的格式正確,那么 *在gen目錄下,你就會(huì)看到系統(tǒng)根據(jù)你提供AIDL文件自動(dòng)為你生成的相應(yīng)的java類 *@author chenzheng_java */ interface RemoteServiceInterface { void startMusic(); void stopMusic(); }
MyRemoteService.java
package cn.com.chenzheng_java.remote; import java.io.IOException; import android.app.Service; import android.content.Intent; import android.media.MediaPlayer; import android.os.IBinder; import android.os.RemoteException; /** * @description 遠(yuǎn)程service * @author chenzheng_java * */ public class MyRemoteService extends Service { MediaPlayer mediaPlayer; @Override public IBinder onBind(Intent intent) { return new MyBinder(); } @Override public void onCreate() { /* * MediaPlayer.create方法第一個(gè)參數(shù)實(shí)際上為context對(duì)象,這里我們直接傳遞service給它, * 是因?yàn)閟ervice本身也是繼承了context的。 */ mediaPlayer = MediaPlayer.create(MyRemoteService.this, R.raw.aiweier); super.onCreate(); } /** * @description 這里一定要注意,繼承的不再是Binder,而是系統(tǒng)自動(dòng)為我們生成的 * Binder的一個(gè)內(nèi)部類,叫做Stub。我們通過(guò)繼承Stub類,然后實(shí)現(xiàn)AIDL * 中定義的方法,便等于對(duì)接口的方法進(jìn)行了具體的實(shí)現(xiàn)。 * @author chenzheng_java * */ private class MyBinder extends RemoteServiceInterface.Stub{ public void startMusic() throws RemoteException { mediaPlayer.start(); } public void stopMusic() throws RemoteException { mediaPlayer.stop(); try { mediaPlayer.prepare(); } catch (IllegalStateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } } }
RemoteServiceActivity.java
package cn.com.chenzheng_java.remote; import android.app.Activity; import android.os.Bundle; /** * 很多人不理解,這里面基本上什么也沒實(shí)現(xiàn),為什么還要提供呢? * 其實(shí)原因是這樣的,service代碼我們寫好了,也在配置文件中注冊(cè)了, * 這樣,手機(jī)系統(tǒng)就會(huì)識(shí)別了嗎?不是的哦,你至少得將該service所在的 * 應(yīng)用運(yùn)行一次才可以哦。要不手機(jī)怎么知道你添加了一個(gè)service啊,對(duì)吧! * @author chenzheng_Java * */ public class RemoteServiceActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } }
androidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cn.com.chenzheng_java.remote" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".RemoteServiceActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="MyRemoteService"> <intent-filter> <action android:name="cn.com.chenzheng_java.remote"/> </intent-filter> </service> </application> </manifest>
客戶端:
activity代碼:
package cn.com.chenzheng_java; 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.IBinder; import android.os.RemoteException; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import cn.com.chenzheng_java.remote.RemoteServiceInterface; /*** * @author chenzheng_java * @description 通過(guò)當(dāng)前activity去調(diào)用不同進(jìn)程中的遠(yuǎn)程service */ public class LocalServiceActivity extends Activity implements OnClickListener { String ACTION_NAME = "cn.com.chenzheng_java.remote"; boolean flag = false; Button button_start ; Button button_stop ; Button button_destroy ; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.music); button_start = (Button) findViewById(R.id.button1); button_stop = (Button) findViewById(R.id.button2); button_destroy = (Button) findViewById(R.id.button3); button_start.setOnClickListener(this); button_stop.setOnClickListener(this); button_destroy.setOnClickListener(this); } RemoteServiceInterface remoteServiceInterface ; private class MyServiceConnection implements ServiceConnection{ public void onServiceConnected(ComponentName name, IBinder service) { remoteServiceInterface = RemoteServiceInterface.Stub.asInterface(service); try { Log.i("flag", flag+""); if(flag){ Log.i("通知", "已經(jīng)開始唱歌"); remoteServiceInterface.startMusic(); }else{ Log.i("通知", "已經(jīng)停止唱歌"); remoteServiceInterface.stopMusic(); } } catch (RemoteException e) { e.printStackTrace(); } } public void onServiceDisconnected(ComponentName name) { } } private MyServiceConnection serviceConnection = new MyServiceConnection(); public void onClick(View v) { if(v == button_start){ flag = true; Intent intent = new Intent(ACTION_NAME); /** * Context.BIND_AUTO_CREATE 當(dāng)綁定service時(shí),如果發(fā)現(xiàn)尚未create,那么就先create一個(gè),然后綁定 */ bindService(intent, serviceConnection ,Context.BIND_AUTO_CREATE); } if(v == button_stop){ Log.i("通知", "已經(jīng)點(diǎn)擊了停止按鈕"); flag = false; Intent intent = new Intent(ACTION_NAME); bindService(intent, serviceConnection ,Context.BIND_AUTO_CREATE); try { remoteServiceInterface.stopMusic(); } catch (RemoteException e) { e.printStackTrace(); } } if(v == button_destroy){ flag = false; Intent intent = new Intent(ACTION_NAME); bindService(intent, serviceConnection ,Context.BIND_AUTO_CREATE); unbindService(serviceConnection); } } }
music.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:text="播放" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> <Button android:text="停止" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> <Button android:text="銷毀service" android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button> </LinearLayout>
其他沒有粘貼出來(lái)的代碼都是由系統(tǒng)默認(rèn)生成的。
AIDL與傳遞對(duì)象
除了上面我們提到的通過(guò)service提供音樂播放等類似的服務(wù)之外,我們還可以通過(guò)service將對(duì)象傳遞回來(lái)哦,你知道怎么用嗎,先看例子:
當(dāng)我們點(diǎn)擊“獲取”時(shí),會(huì)從另一個(gè)線程的service中獲取一個(gè)對(duì)象,然后將里面的內(nèi)容讀出來(lái)。
對(duì)于aidl實(shí)現(xiàn)以對(duì)象的方式交互。主要步驟如下:
服務(wù)端:
第一:定義一個(gè)實(shí)體類,這里是Beauty,定義一個(gè)服務(wù)接口aidl文件RemoteBeauty.aidl,這里有一點(diǎn)需要注意,我們引用自定義的實(shí)體類到aidl中時(shí)需要通過(guò)import導(dǎo)入包,但是你會(huì)發(fā)現(xiàn),即使你導(dǎo)入了包,還是提示找不到,這時(shí)候,你要做的是,建一個(gè)以實(shí)體類名稱命名的aidl文件,如Beauty.aidl,在里面添加一句pracelable Beauty。
第二:開始編寫B(tài)eauty,這里一定要注意,它一定要實(shí)現(xiàn)Pracelable接口,該接口是一個(gè)序列化的接口,功能和serializable相似,但是功能更加的迅速。此外,在該Beauty內(nèi)部一定要聲明一個(gè)public static final Pracelable.Creator<T>CREATOR對(duì)象??!除了里面的那個(gè)T代表實(shí)體類之外,其他的都不準(zhǔn)改變哦。
第三:在androidManifest.xml中注冊(cè)service。并定義好訪問(wèn)該service的action字符串。
客戶端:
客戶端這邊相應(yīng)的要簡(jiǎn)單很多,但是要注意的一點(diǎn)是,要將實(shí)體類還有aidl文件都拷貝過(guò)來(lái)哦,而且要保證路徑完全一致??!
Beauty.java
package cn.com.chenzheng_java.service; import android.os.Parcel; import android.os.Parcelable; /** * * @author chenzheng_java * @description Parcelable是android提供的一個(gè)比serializable效率更高的序列號(hào)接口 * 這里必須要繼承Parcelable哦,不序列號(hào)怎么可以傳遞……對(duì)吧?! * 在實(shí)體類我們要做兩件重要的事情: * 第一:實(shí)現(xiàn)Parcelable接口 * 第二:定義一個(gè)Parcelable.Creator類型的CREATOR對(duì)象 * 第三:要提供一個(gè)Beauty.aidl文件,其中內(nèi)容為parcelable Beauty,定義了之后,在其他aidl文件中引用Beauty時(shí)便不會(huì)提示出錯(cuò)了。 * @since 2011/03/18 * */ public class Beauty implements Parcelable { String name ; int age ; String sex ; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } @Override public int describeContents() { return 0; } /** * 將對(duì)象序列號(hào) * dest 就是對(duì)象即將寫入的目的對(duì)象 * flags 有關(guān)對(duì)象序列號(hào)的方式的標(biāo)識(shí) * 這里要注意,寫入的順序要和在createFromParcel方法中讀出的順序完全相同。例如這里先寫入的為name, * 那么在createFromParcel就要先讀name */ @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(name); dest.writeInt(age); dest.writeString(sex); } /** * 在想要進(jìn)行序列號(hào)傳遞的實(shí)體類內(nèi)部一定要聲明該常量。常量名只能是CREATOR,類型也必須是 * Parcelable.Creator<T> */ public static final Parcelable.Creator<Beauty> CREATOR = new Creator<Beauty>() { /** * 創(chuàng)建一個(gè)要序列號(hào)的實(shí)體類的數(shù)組,數(shù)組中存儲(chǔ)的都設(shè)置為null */ @Override public Beauty[] newArray(int size) { return new Beauty[size]; } /*** * 根據(jù)序列號(hào)的Parcel對(duì)象,反序列號(hào)為原本的實(shí)體對(duì)象 * 讀出順序要和writeToParcel的寫入順序相同 */ @Override public Beauty createFromParcel(Parcel source) { String name = source.readString(); int age = source.readInt(); String sex = source.readString(); Beauty beauty = new Beauty(); beauty.setName(name); beauty.setAge(age); beauty.setSex(sex); return beauty; } }; }
RemoteService.java
package cn.com.chenzheng_java.service; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; import android.util.Log; /** * * @author chenzheng_java * @description 提供服務(wù)的service * */ public class RemoteService extends Service { @Override public IBinder onBind(Intent intent) { Log.i("通知", "執(zhí)行了OnBind"); return new MyBinder(); } private class MyBinder extends RemoteBeauty.Stub{ @Override public Beauty getBeauty() throws RemoteException { Beauty beauty = new Beauty(); beauty.setName("feifei"); beauty.setAge(21); beauty.setSex("female"); return beauty; }} }
ServiceActivity.java
package cn.com.chenzheng_java.service; import android.app.Activity; import android.os.Bundle; /** * @description 進(jìn)程之間對(duì)象數(shù)據(jù)的傳遞 * @author chenzheng_java * */ public class ServiceActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } }
Beauty.aidl
parcelable Beauty; RemoteBeauty.aidl package cn.com.chenzheng_java.service; import cn.com.chenzheng_java.service.Beauty; interface RemoteBeauty { Beauty getBeauty(); }
manifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cn.com.chenzheng_java.service" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".ServiceActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- service開始 --> <service android:name="RemoteService"> <intent-filter> <action android:name="cn.com.chenzheng_java.remote2"/> </intent-filter> </service> <!-- service結(jié)束 --> </application> </manifest>
客戶端:
ClientActivity.java
package cn.com.chenzheng_java.client; 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.IBinder; import android.os.RemoteException; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; import cn.com.chenzheng_java.service.Beauty; import cn.com.chenzheng_java.service.RemoteBeauty; public class ClientActivity extends Activity implements OnClickListener { TextView textView ; Button button ; String actionName = "cn.com.chenzheng_java.remote2"; RemoteBeauty remoteBeauty; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); textView = (TextView) findViewById(R.id.textView1); button = (Button) findViewById(R.id.button1); button.setOnClickListener(this); } private class MyServiceConnection implements ServiceConnection{ @Override public void onServiceConnected(ComponentName name, IBinder service) { Log.i("通知", "鏈接成功!"); remoteBeauty = RemoteBeauty.Stub.asInterface(service); try { Beauty beauty = remoteBeauty.getBeauty(); textView.setText("美女 姓名:"+beauty.getName()+" 年齡:"+beauty.getAge() +" 性別:"+beauty.getSex()); } catch (RemoteException e) { e.printStackTrace(); } } @Override public void onServiceDisconnected(ComponentName name) { } } MyServiceConnection connection = new MyServiceConnection(); @Override public void onClick(View v) { Intent intent = new Intent(actionName); bindService(intent, connection, Context.BIND_AUTO_CREATE); } }
另外Beauty.java 以及RemoteBeauty.aidl都是從服務(wù)端系統(tǒng)中拷貝過(guò)來(lái)的哦。
如果你想你的service在系統(tǒng)開機(jī)時(shí)自啟動(dòng)??梢栽趕ervice的androidManifest.xml中加上這樣的配置。
<receiver android:name=".StartBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> </receiver>
相關(guān)文章
Android 高仿微信朋友圈動(dòng)態(tài)支持雙擊手勢(shì)放大并滑動(dòng)查看圖片效果
這篇文章主要介紹了Android 高仿微信朋友圈動(dòng)態(tài)支持雙擊手勢(shì)放大并滑動(dòng)查看圖片效果,需要的朋友參考下2017-01-01NestedScrollView+Recyclerview下滑卡頓解決方法
本文為大家解決安卓開發(fā)時(shí)候NestedScrollView+Recyclerview下滑卡頓的問(wèn)題,希望能夠幫助到你。2017-11-11Android模擬開關(guān)按鈕點(diǎn)擊打開動(dòng)畫(屬性動(dòng)畫之平移動(dòng)畫)
這篇文章主要介紹了Android模擬開關(guān)按鈕點(diǎn)擊打開動(dòng)畫(屬性動(dòng)畫之平移動(dòng)畫)的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-09-09Android 觸摸事件監(jiān)聽(Activity層,ViewGroup層,View層)詳細(xì)介紹
這篇文章主要介紹了Android 觸摸事件監(jiān)聽(Activity層,ViewGroup層,View層)詳細(xì)介紹的相關(guān)資料,需要的朋友可以參考下2016-12-12Android實(shí)現(xiàn)點(diǎn)擊Button產(chǎn)生水波紋效果
這篇文章主要介紹了Android實(shí)現(xiàn)點(diǎn)擊Button產(chǎn)生水波紋效果,需要的朋友可以參考下2016-01-01Android listview動(dòng)態(tài)加載列表項(xiàng)實(shí)現(xiàn)代碼
這篇文章主要為大家詳細(xì)介紹了Android listview動(dòng)態(tài)加載列表項(xiàng)實(shí)現(xiàn)代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-06-06kotlin實(shí)現(xiàn)通知欄提醒功能示例代碼
這篇文章主要給大家介紹了關(guān)于kotlin實(shí)現(xiàn)通知欄提醒功能的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用kotlin具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-08-08利用DrawerLayout和觸摸事件分發(fā)實(shí)現(xiàn)抽屜側(cè)滑效果
這篇文章主要為大家詳細(xì)介紹了利用DrawerLayout和觸摸事件分發(fā)實(shí)現(xiàn)抽屜側(cè)滑效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-10-10