我有4个按钮,横跨水平方向的线性布局,均匀加权,将它们分开在屏幕的宽度上但是为了改善外观,并清楚地定义按钮的轮廓,我想设置边框到按钮,但无法弄清楚如何! (我知道,这很可悲!)
我环顾四周,无法找到答案 - 抓点! 这是按钮的属性:
<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复制到你的文件中。