xml模版,自訂按鈕背景
<?xml version="1.0" encoding="utf-8"?> <corners android:bottomleftradius="4dp" android:bottomRightRadius="4dp" android:topLeftRadius="4dp" android:topRightRadius="4dp"/> <padding android:bottom="1dp" android:left="1dp" android:right="1dp" android:top="1dp"/> <corners android:bottomleftradius="4dp" android:bottomRightRadius="4dp" android:topLeftRadius="4dp" android:topRightRadius="4dp"/> <padding android:bottom="1dp" android:left="1dp" android:right="1dp" android:top="1dp"/>
最外層是選擇器,裡麵包含兩個item的state_pressed屬性會被點擊時觸發,true表示顯示被點擊的item,false是預設值,顯示沒被點擊的裡麵包含,的shape屬性可以控制顯示的形狀,一般選擇rectangle 矩形或oval 橢圓,如果希望能成圓形,需要限定高度等於寬度並且大於文字的寬度才行,在節點加入
<size android:width="130dp" android:height="130dp" />
裡麵包含的內容非常豐富
填滿顏色
邊線width:邊線寬度color:顏色dashWidth:虛線寬度,dashGap:虛線間隔寬度圓角,可以設定四個邊角,此時shape是矩形,也可以一次設定radius
#設定寬度與高度
設定內邊距
以上是xml模版,自訂按鈕背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!