1
我有4個按鈕跨越一個水平定向的LinearLayout被均勻地加權,以它們分割在屏幕上的寬度,但可以改善外觀,並明確限定了按鈕的輪廓,我想設置邊框的按鈕,但無法弄清楚如何! (我知道,這是可悲的!)分配邊界屬性按鈕
我環顧四周,找不到答案 - 爭奪點! 這裏是按鈕的屬性:
<Button
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/dot"
android:id="@+id/dot"
android:layout_width="0dp"
android:background="@color/Button_Color"
android:clickable="true"
android:onClick="SelectDot"/>
在此先感謝!
將邊框添加到按鈕,您可以創建自定義繪製和設置邊框屬性 –