如何在Android 中使用自訂按鈕實作自訂操作列
像自訂檢視一樣實作自訂按鈕
要建立一個按鈕作為自訂視圖,只需在自訂操作列佈局中聲明一個ImageButton 即可。此按鈕可以顯示沒有任何文字或邊框的圖像。
<code class="xml"><ImageButton android:id="@+id/custom_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/my_custom_image" /></code>
在 ActionBar 頂部繪製一條線
在 ActionBar 頂部繪製一條線操作欄,建立一個薄水平視圖並設定其背景顏色。
<code class="xml"><View android:id="@+id/action_bar_line" android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/black" /></code>
實作沒有分隔線的按鈕
您無法使用標準方法完全刪除操作列按鈕之間的分隔線。您有兩個選項:
以上是如何使用自訂按鈕和行分隔符號自訂 Android 操作欄?的詳細內容。更多資訊請關注PHP中文網其他相關文章!