自定義button背景(如果美工不給圖片的話)

<pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    	<solid android:color="#02477F" />
	
	   <stroke android:width="1dp"
	    android:color="#02477F"/>
	 
	   <corners 
	     android:topLeftRadius="5dp"
	     android:bottomLeftRadius="5dp"
	     android:topRightRadius="1dp"
	     android:bottomRightRadius="1dp"
	     /> 	
</shape>


<!-- solid設置填充顏色,顏色值以#80開頭表示透明
 
stroke   stroke中的width設置邊框寬度,stroke中的color設置邊框的顏色
 
corners設置圓角 -->



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章