Android仿優(yōu)酷圓形菜單學(xué)習(xí)筆記分享
本文實例為大家分享了Android優(yōu)酷圓形菜單的具體代碼,供大家參考,具體內(nèi)容如下
先來看看效果:
首先來分析一下:
這個菜單可以分成三個菜單:
1.一級菜單(即最內(nèi)圈那個菜單)
2.二級菜單(即中間圈那個菜單)
3.三級菜單(即最外圈那個菜單)
首先,可以將這三個菜單使用相對布局
一級菜單只有一個按鈕(即home),可以控制二級和三級菜單
二級菜單有三個按鈕(即menu),中間那個按鈕可以控制三級菜單
三級菜單有七個按鈕
那先把布局文件先寫出來,采用三個相對布局(即每個菜單采用一個相對布局)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.youkumenu.MainActivity" > <!-- 三級菜單 --> <RelativeLayout android:id="@+id/level3_Rl" android:layout_width="220dp" android:layout_height="110dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level3" > <ImageView android:id="@+id/channel1" android:layout_marginLeft="5dp" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel1"/> <ImageView android:id="@+id/channel2" android:layout_marginBottom="10dp" android:layout_marginLeft="25dp" android:layout_above="@id/channel1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel2"/> <ImageView android:layout_marginBottom="1dp" android:layout_marginLeft="52dp" android:layout_above="@id/channel2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel3"/> <ImageView android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel4"/> <ImageView android:id="@+id/channel7" android:layout_marginRight="5dp" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel7"/> <ImageView android:id="@+id/channel6" android:layout_alignParentRight="true" android:layout_marginBottom="10dp" android:layout_marginRight="25dp" android:layout_above="@id/channel7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel6"/> <ImageView android:layout_marginBottom="1dp" android:layout_marginRight="52dp" android:layout_alignParentRight="true" android:layout_above="@id/channel6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel5"/> </RelativeLayout> <!-- 二級菜單 --> <RelativeLayout android:id="@+id/level2_Rl" android:layout_width="140dp" android:layout_height="70dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level2" > <ImageView android:layout_marginLeft="3dp" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_search"/> <ImageView android:id="@+id/menu_Iv" android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_menu"/> <ImageView android:id="@+id/myyouku_Iv" android:layout_marginRight="3dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_myyouku"/> </RelativeLayout> <!-- 一級菜單 --> <RelativeLayout android:layout_width="80dp" android:layout_height="40dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level1" > <ImageView android:id="@+id/home_Iv" android:layout_centerInParent="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_home" /> </RelativeLayout> </RelativeLayout>
那好,布局寫好,就能看到這樣的效果,只不過現(xiàn)在只是靜態(tài)的,沒有加邏輯而已
下面就該來分析下邏輯了,先來看看home(即一級菜單中間那個按鈕)
點(diǎn)擊home,會有三種情況,下面分情況考慮:
情況1.二級、三級菜單都顯示,就將二、三級菜單隱藏掉
情況2.二、三級菜單都不顯示的時候,就將二級菜單顯示
情況3.二級菜單顯示且三級菜單不顯示的時候,就將二級菜單隱藏
當(dāng)然我們知道,要知道菜單隱藏或者顯示,只需要設(shè)個標(biāo)記位即可
那要如何隱藏或顯示菜單,當(dāng)然是使用動畫了,可以使用補(bǔ)間動畫和
屬性動畫,我這里就使用補(bǔ)間動畫
下面就該來分析下邏輯了,先來看看menu(即二級菜單中間那個按鈕)
點(diǎn)擊menu,會有三種情況,下面分情況考慮:
情況1.三級顯示的時候,就將三級菜單隱藏
情況2.三級隱藏的時候,就將三級菜單顯示
這個就比較簡單了,就兩種情況。
public class MainActivity extends Activity implements OnClickListener{ //一級菜單中的home按鈕 private ImageView home_Iv; //二級菜單中的Menu按鈕 private ImageView menu_Iv; //用于判斷二級菜單的顯示狀況,true為顯示,false為隱藏 private boolean level2ListPlay = true; //用于判斷二級菜單的顯示狀況,true為顯示,false為隱藏 private boolean level3ListPlay = true; //二級和三級菜單 private RelativeLayout level2_Rl,level3_Rl; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } //初始化組件 private void initView() { home_Iv = (ImageView) findViewById(R.id.home_Iv); home_Iv.setOnClickListener(this); level2_Rl = (RelativeLayout) findViewById(R.id.level2_Rl); level3_Rl = (RelativeLayout) findViewById(R.id.level3_Rl); menu_Iv = (ImageView) findViewById(R.id.menu_Iv); menu_Iv.setOnClickListener(this); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.home_Iv: //點(diǎn)擊home按鈕的邏輯代碼 clickHomeIv(); break; case R.id.menu_Iv: clickMenuIv(); //點(diǎn)擊二級菜單中的menu按鈕的邏輯代碼 break; default: break; } } //點(diǎn)擊二級菜單中的menu按鈕的邏輯代碼 private void clickMenuIv() { //分情況考慮 //1.三級顯示的時候,就將三級菜單隱藏 if (level3ListPlay) { hideMenu(level3_Rl,0); level3ListPlay = false; return; } //2.三級隱藏的時候,就將三級菜單顯示 if (!level3ListPlay) { showMenu(level3_Rl); level3ListPlay = true; return; } } //點(diǎn)擊一級菜單中的home按鈕的邏輯代碼 private void clickHomeIv() { //分情況考慮 //1.二級、三級菜單都顯示,就將二、三級菜單隱藏掉 if (level2ListPlay && level3ListPlay) { //將二三級菜單隱藏,并改變標(biāo)記 hideMenu(level2_Rl,300); hideMenu(level3_Rl,500); level2ListPlay = false; level3ListPlay = false; return; } //2.二、三級菜單都不顯示的時候,就將二級菜單顯示 if (!level2ListPlay && !level3ListPlay) { showMenu(level2_Rl); level2ListPlay = true; return; } //3.二級菜單顯示且三級菜單不顯示的時候,就將二級菜單隱藏 if (level2ListPlay && !level3ListPlay) { hideMenu(level2_Rl,0); level2ListPlay = false; return; } } /** * 顯示菜單 * @param view 要顯示的菜單 */ private void showMenu(RelativeLayout view) { // view.setVisibility(View.VISIBLE); //旋轉(zhuǎn)動畫 RotateAnimation animation = new RotateAnimation(-180, 0, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1.0f); animation.setDuration(500); //設(shè)置動畫持續(xù)的時間 animation.setFillAfter(true); //動畫停留在動畫結(jié)束的位置 view.startAnimation(animation); } /** * 隱藏菜單 * @param view 要隱藏的菜單 ,startOffset 動畫延遲執(zhí)行的時間 */ private void hideMenu(RelativeLayout view,long startOffset) { // view.setVisibility(View.GONE); /** * 旋轉(zhuǎn)動畫 * RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue) * fromDegrees 開始旋轉(zhuǎn)角度 * toDegrees 旋轉(zhuǎn)的結(jié)束角度 * pivotXType X軸 參照物 (X軸的伸縮模式,可以取值為ABSOLUTE、RELATIVE_TO_SELF) * pivotXValue x軸 旋轉(zhuǎn)的參考點(diǎn)(x坐標(biāo)的伸縮值) * pivotYType Y軸 參照物 (Y軸的伸縮模式,可以取值為ABSOLUTE、RELATIVE_TO_SELF) * pivotYValue Y軸 旋轉(zhuǎn)的參考點(diǎn) ((Y坐標(biāo)的伸縮值) ) */ RotateAnimation animation = new RotateAnimation(0, -180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1.0f); animation.setDuration(500); animation.setFillAfter(true); //動畫停留在動畫結(jié)束的位置 animation.setStartOffset(startOffset); //設(shè)置動畫的延遲執(zhí)行 view.startAnimation(animation); } }
寫到這里,應(yīng)該差不多可以看到效果了,但是細(xì)心的伙伴應(yīng)該會發(fā)現(xiàn)兩個bug:
第一:當(dāng)你快速點(diǎn)擊一級菜單home按鈕或二級菜單menu按鈕的時候,會發(fā)現(xiàn)二級菜單或三級菜單的第一次動畫還沒執(zhí)行完,又執(zhí)行第二次動畫,看起來就在晃一樣。(原因:就是執(zhí)行的動畫都設(shè)定了一定時間,你點(diǎn)擊的時間快于動畫執(zhí)行的時間)
解決辦法:
對動畫進(jìn)行監(jiān)聽,當(dāng)動畫開始執(zhí)行和結(jié)束的時候,對它進(jìn)行監(jiān)聽,大家應(yīng)該會想到用一個標(biāo)記位來判斷,可我們知道一個標(biāo)記為只能判斷兩種狀態(tài),可這里有兩種動畫(顯示的動畫和隱藏的動畫),一個標(biāo)記位肯定不行,可以用一個Int值來控制
//用于記錄有多少個動畫在執(zhí)行 private int annimationCount = 0; //對動畫進(jìn)行監(jiān)聽的時候 animation.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) { // menu_Iv.setOnClickListener(null); // home_Iv.setOnClickListener(null); annimationCount ++; } @Override public void onAnimationRepeat(Animation animation) { } @Override public void onAnimationEnd(Animation animation) { // menu_Iv.setOnClickListener(MainActivity.this); // home_Iv.setOnClickListener(MainActivity.this); annimationCount --; } //當(dāng)點(diǎn)擊的時候就可以進(jìn)行判斷,只要annimationCount值大于0,說明還有動畫在執(zhí)行 if (annimationCount > 0) { return ; }
第二:當(dāng)二級菜單隱藏的時候,你點(diǎn)擊二級菜單中menu按鈕(雖然現(xiàn)在看不見)時,你會驚奇的發(fā)現(xiàn)三級菜單居然顯示了。(原因:補(bǔ)間動畫,沒有真正的改變組件的屬性,而屬性動畫就不一樣,大家有時間可以試試屬性動畫做做)
解決辦法:
只要當(dāng)二級菜單隱藏的時候,就讓二級菜單的所有選項按鈕都不可點(diǎn)。因為二級菜單有可以能有多個按鈕,所以拿到父容器,去使它的子控件失去焦點(diǎn)即可。
//如果要顯示菜單,那么就將相應(yīng)的控件設(shè)為有焦點(diǎn) //獲取父容器中有幾個子控件 int childCount = view.getChildCount(); for (int i = 0; i < childCount; i++) { view.getChildAt(i).setEnabled(true); }
寫到這里就差不多了,大家可以試試
這里把我寫的完整代碼貼出來:
public class MainActivity extends Activity implements OnClickListener{ //一級菜單中的home按鈕 private ImageView home_Iv; //二級菜單中的Menu按鈕 private ImageView menu_Iv; //用于判斷二級菜單的顯示狀況,true為顯示,false為隱藏 private boolean level2ListPlay = true; //用于判斷二級菜單的顯示狀況,true為顯示,false為隱藏 private boolean level3ListPlay = true; //二級和三級菜單 private RelativeLayout level2_Rl,level3_Rl; //用于記錄有多少個動畫在執(zhí)行 private int annimationCount = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } //初始化組件 private void initView() { home_Iv = (ImageView) findViewById(R.id.home_Iv); home_Iv.setOnClickListener(this); level2_Rl = (RelativeLayout) findViewById(R.id.level2_Rl); level3_Rl = (RelativeLayout) findViewById(R.id.level3_Rl); menu_Iv = (ImageView) findViewById(R.id.menu_Iv); menu_Iv.setOnClickListener(this); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.home_Iv: //點(diǎn)擊home按鈕的邏輯代碼 clickHomeIv(); break; case R.id.menu_Iv: clickMenuIv(); //點(diǎn)擊二級菜單中的menu按鈕的邏輯代碼 break; default: break; } } //點(diǎn)擊二級菜單中的menu按鈕的邏輯代碼 private void clickMenuIv() { //當(dāng)點(diǎn)擊的時候就可以進(jìn)行判斷,只要annimationCount值大于0,說明還有動畫在執(zhí)行 if (annimationCount > 0) { return ; } //分情況考慮 //1.三級顯示的時候,就將三級菜單隱藏 if (level3ListPlay) { hideMenu(level3_Rl,0); level3ListPlay = false; return; } //2.三級隱藏的時候,就將三級菜單顯示 if (!level3ListPlay) { showMenu(level3_Rl); level3ListPlay = true; return; } } //點(diǎn)擊一級菜單中的home按鈕的邏輯代碼 private void clickHomeIv() { //當(dāng)點(diǎn)擊的時候就可以進(jìn)行判斷,只要annimationCount值大于0,說明還有動畫在執(zhí)行 if (annimationCount > 0) { return ; } //分情況考慮 //1.二級、三級菜單都顯示,就將二、三級菜單隱藏掉 if (level2ListPlay && level3ListPlay) { //將二三級菜單隱藏,并改變標(biāo)記 hideMenu(level2_Rl,300); hideMenu(level3_Rl,500); level2ListPlay = false; level3ListPlay = false; return; } //2.二、三級菜單都不顯示的時候,就將二級菜單顯示 if (!level2ListPlay && !level3ListPlay) { showMenu(level2_Rl); level2ListPlay = true; return; } //3.二級菜單顯示且三級菜單不顯示的時候,就將二級菜單隱藏 if (level2ListPlay && !level3ListPlay) { hideMenu(level2_Rl,0); level2ListPlay = false; return; } } /** * 顯示菜單 * @param view 要顯示的菜單 */ private void showMenu(RelativeLayout view) { // view.setVisibility(View.VISIBLE); //如果要顯示菜單,那么就將相應(yīng)的控件設(shè)為有焦點(diǎn) //獲取父容器中有幾個子控件 int childCount = view.getChildCount(); for (int i = 0; i < childCount; i++) { view.getChildAt(i).setEnabled(true); } //旋轉(zhuǎn)動畫 RotateAnimation animation = new RotateAnimation(-180, 0, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1.0f); animation.setDuration(500); //設(shè)置動畫持續(xù)的時間 animation.setFillAfter(true); //動畫停留在動畫結(jié)束的位置 view.startAnimation(animation); animation.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) { //動畫開始的時候回調(diào) // menu_Iv.setOnClickListener(null); // home_Iv.setOnClickListener(null); annimationCount ++; } @Override public void onAnimationRepeat(Animation animation) { //動畫執(zhí)行過程調(diào)用 } @Override public void onAnimationEnd(Animation animation) { //動畫結(jié)束的時候調(diào)用 // menu_Iv.setOnClickListener(MainActivity.this); // home_Iv.setOnClickListener(MainActivity.this); annimationCount --; } }); } /** * 隱藏菜單 * @param view 要隱藏的菜單 ,startOffset 動畫延遲執(zhí)行的時間 */ private void hideMenu(RelativeLayout view,long startOffset) { // view.setVisibility(View.GONE); //如果要隱藏菜單,那么就將相應(yīng)的控件設(shè)為沒有焦點(diǎn) //獲取父容器中有幾個子控件 int childCount = view.getChildCount(); for (int i = 0; i < childCount; i++) { view.getChildAt(i).setEnabled(false); } /** * 旋轉(zhuǎn)動畫 * RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue) * fromDegrees 開始旋轉(zhuǎn)角度 * toDegrees 旋轉(zhuǎn)的結(jié)束角度 * pivotXType X軸 參照物 (X軸的伸縮模式,可以取值為ABSOLUTE、RELATIVE_TO_SELF) * pivotXValue x軸 旋轉(zhuǎn)的參考點(diǎn)(x坐標(biāo)的伸縮值) * pivotYType Y軸 參照物 (Y軸的伸縮模式,可以取值為ABSOLUTE、RELATIVE_TO_SELF) * pivotYValue Y軸 旋轉(zhuǎn)的參考點(diǎn) ((Y坐標(biāo)的伸縮值) ) */ RotateAnimation animation = new RotateAnimation(0, -180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1.0f); animation.setDuration(500); animation.setFillAfter(true); //動畫停留在動畫結(jié)束的位置 animation.setStartOffset(startOffset); //設(shè)置動畫的延遲執(zhí)行 view.startAnimation(animation); animation.setAnimationListener(new AnimationListener() { @Override public void onAnimationStart(Animation animation) { // menu_Iv.setOnClickListener(null); // home_Iv.setOnClickListener(null); annimationCount ++; } @Override public void onAnimationRepeat(Animation animation) { } @Override public void onAnimationEnd(Animation animation) { // menu_Iv.setOnClickListener(MainActivity.this); // home_Iv.setOnClickListener(MainActivity.this); annimationCount --; } }); } }
布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.youkumenu.MainActivity" > <!-- 三級菜單 --> <RelativeLayout android:id="@+id/level3_Rl" android:layout_width="220dp" android:layout_height="110dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level3" > <ImageView android:id="@+id/channel1" android:layout_marginLeft="5dp" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel1"/> <ImageView android:id="@+id/channel2" android:layout_marginBottom="10dp" android:layout_marginLeft="25dp" android:layout_above="@id/channel1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel2"/> <ImageView android:layout_marginBottom="1dp" android:layout_marginLeft="52dp" android:layout_above="@id/channel2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel3"/> <ImageView android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel4"/> <ImageView android:id="@+id/channel7" android:layout_marginRight="5dp" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel7"/> <ImageView android:id="@+id/channel6" android:layout_alignParentRight="true" android:layout_marginBottom="10dp" android:layout_marginRight="25dp" android:layout_above="@id/channel7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel6"/> <ImageView android:layout_marginBottom="1dp" android:layout_marginRight="52dp" android:layout_alignParentRight="true" android:layout_above="@id/channel6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/channel5"/> </RelativeLayout> <!-- 二級菜單 --> <RelativeLayout android:id="@+id/level2_Rl" android:layout_width="140dp" android:layout_height="70dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level2" > <ImageView android:layout_marginLeft="3dp" android:layout_alignParentBottom="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_search"/> <ImageView android:id="@+id/menu_Iv" android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_menu"/> <ImageView android:id="@+id/myyouku_Iv" android:layout_marginRight="3dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_myyouku"/> </RelativeLayout> <!-- 一級菜單 --> <RelativeLayout android:layout_width="80dp" android:layout_height="40dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level1" > <ImageView android:id="@+id/home_Iv" android:layout_centerInParent="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/icon_home" /> </RelativeLayout> </RelativeLayout>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家繼續(xù)關(guān)注腳本之家的更多精彩內(nèi)容!
- Android 自定義組件衛(wèi)星菜單的實現(xiàn)
- Android衛(wèi)星菜單效果的實現(xiàn)方法
- Android自定義VIew實現(xiàn)衛(wèi)星菜單效果淺析
- Android實現(xiàn)自定義的衛(wèi)星式菜單(弧形菜單)詳解
- Android編程實現(xiàn)仿優(yōu)酷圓盤旋轉(zhuǎn)菜單效果的方法詳解【附demo源碼下載】
- Android學(xué)習(xí)教程之圓形Menu菜單制作方法(1)
- Android自定義view實現(xiàn)圓形與半圓形菜單
- Android圓形旋轉(zhuǎn)菜單開發(fā)實例
- Android自定義ViewGroup實現(xiàn)帶箭頭的圓角矩形菜單
- Adapter模式實戰(zhàn)之重構(gòu)鴻洋集團(tuán)的Android圓形菜單建行
- Android實現(xiàn)衛(wèi)星菜單效果
相關(guān)文章
Android的廣播Receiver動態(tài)注冊和靜態(tài)注冊示例
本篇文章主要介紹了Android的廣播Receiver動態(tài)注冊和靜態(tài)注冊示例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-02-02Android解決viewpager嵌套滑動沖突并保留側(cè)滑菜單功能
這篇文章主要介紹了 解決viewpager嵌套滑動沖突,并保留側(cè)滑菜單功能,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2017-06-06使用IntelliJ IDEA 配置安卓(Android)開發(fā)環(huán)境的教程詳解(新手必看)
這篇文章主要介紹了使用IntelliJ IDEA 配置安卓(Android)開發(fā)環(huán)境的教程詳解(新手必看),本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-09-09使用AccessibilityService實現(xiàn)自動遍歷點(diǎn)贊功能
這篇文章主要為大家詳細(xì)介紹了使用AccessibilityService實現(xiàn)自動遍歷點(diǎn)贊功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-12-12Android調(diào)用google地圖生成路線圖實現(xiàn)代碼
Android程序調(diào)用本機(jī)google地圖并且傳遞起始和終點(diǎn)位置生成路線圖,有需要的朋有可以參考下,或許本文對你有所幫助,好了話不多說,看代碼2013-02-02