当您将android:background
设置为其他颜色时,Button
会显得更大。此外,Button
周围的线条消失了。这是为什么?
答案 0 :(得分:1)
设置颜色时,按此颜色绘制矩形区域,但默认情况下可以使用一些可绘制或九个补丁图片。使用shape自定义背景或覆盖样式。如果您只需要为某些视图应用样式,则可以使用xml属性style
。
<style name="MyCoolStyle" parent="base style of view" >
</style>
在布局xml中:
<YourView
style="@style/MyCoolStyle"/>