溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Android中使用懸浮按鈕

發(fā)布時(shí)間:2021-05-17 17:16:51 來源:億速云 閱讀:157 作者:Leah 欄目:移動(dòng)開發(fā)

本篇文章為大家展示了如何在Android中使用懸浮按鈕,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

步驟1:引用

compile 'com.laocaixw.suspendbuttonlayout:suspendbuttonlayout:1.0.3'

步驟2:xml布局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout android:layout_height="match_parent" 
 android:layout_width="match_parent" 
 android:orientation="vertical" 
 xmlns:suspend="http://schemas.android.com/apk/res-auto" 
 xmlns:android="http://schemas.android.com/apk/res/android"> 
 
 <com.laocaixw.layout.SuspendButtonLayout 
  android:id="@+id/layout" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  suspend:distance="80dp" 
  suspend:imageSize="50dp" 
  suspend:marginY="100dp" 
  suspend:number="6" 
  suspend:imageMainOpen="@mipmap/suspend_main_open" 
  suspend:imageMainClose="@mipmap/suspend_main_close" 
  suspend:image1="@mipmap/suspend_1" 
  suspend:image2="@mipmap/suspend_2" 
  suspend:image3="@mipmap/suspend_3" 
  suspend:image4="@mipmap/suspend_4" 
  suspend:image5="@mipmap/suspend_5" 
  suspend:image6="@mipmap/suspend_6"> 
 
 </com.laocaixw.layout.SuspendButtonLayout> 
 
</LinearLayout>

以上各屬性:

  • distance="80dp" // 按鈕打開后,主按鈕和子按鈕的距離

  • imageSize="50dp" // 按鈕大小,所占區(qū)域的邊長

  • marginY="100dp" // 與上下邊緣距離,下圖中黃色部分的高度

  • number="6" // 展開的子按鈕的數(shù)量,可以是3-6個(gè)

  • imageMainOpen="@mipmap/suspendMainOpen" // 中間按鈕展開時(shí)的圖片資源

  • imageMainClose="@mipmap/suspendMainClose" // 中間按鈕關(guān)閉時(shí)的圖片資源

  • image1="@mipmap/suspend_1" // 子按鈕的圖片資源,image1~image6

步驟3:Activity使用

public class MainActivity extends AppCompatActivity { 
 
 public String[] suspendChildButtonInfo = {"相機(jī)", "音樂", "地圖", "亮度", "聯(lián)系人", "短信"}; 
 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_suspendbutton); 
 
  final SuspendButtonLayout suspendButtonLayout = (SuspendButtonLayout) findViewById(R.id.layout); 
  suspendButtonLayout.setOnSuspendListener(new SuspendButtonLayout.OnSuspendListener() { 
   @Override 
   public void onButtonStatusChanged(int status) { 
 
   } 
 
   @Override 
   public void onChildButtonClick(int index) { 
    Toast.makeText(MainActivity.this, "您點(diǎn)擊了【" 
      + suspendChildButtonInfo[index - 1] + "】按鈕!", Toast.LENGTH_SHORT).show(); 
   } 
  }); 
 
/**  

 * suspendButtonLayout.hideSuspendButton(); // 隱藏按鈕 
  suspendButtonLayout.showSuspendButton(); // 顯示按鈕 
 
  suspendButtonLayout.openSuspendButton(); // 展開按鈕 
  suspendButtonLayout.closeSuspendButton(); // 關(guān)閉按鈕 
 
  suspendButtonLayout.setMainCloseImageResource(R.mipmap.suspend_main_close); // 設(shè)置關(guān)閉時(shí),主按鈕的圖片 
  suspendButtonLayout.setMainOpenImageResource(R.mipmap.suspend_main_open); // 設(shè)置展開時(shí),主按鈕的圖片 
 
  // 設(shè)置按鈕位置。isRight:true在右邊,false在左邊;stayPosY:在'按鈕停留區(qū)域'從上往下,值為從0到100。 
  suspendButtonLayout.setPosition(isRight, stayPosY); */ 
 
 
 } 
}

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動(dòng)設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

上述內(nèi)容就是如何在Android中使用懸浮按鈕,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI