2016-10-03 136 views
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"/> 

在此先感謝!

+0

將邊框添加到按鈕,您可以創建自定義繪製和設置邊框屬性 –

回答

1

如果您只是想空間,你的按鈕,添加按鈕定義範圍內的layout_margin屬性,如:

android:layout_margin="10dp" 

如果你想按鈕周圍邊緣的實際行程路線,這裏是一個快速的方法來創建它:http://angrytools.com/android/button/

只是設計你在那裏要什麼和XML複製到您的文件。

+0

偉大的鏈接 - 謝謝! – Jeremy