selector 及 Shape 小結

在Android程序開發中,咱們常常會去用到Shape這個東西去定義各類各樣的形狀,首先咱們瞭解一下Shape下面有哪些標籤,都表明什麼意思:html

solid:填充
android:color指定填充的顏色
android


gradient:漸變
android:startColor和android:endColor分別爲起始和結束顏色,
spa

android:angle是漸變角度,必須爲45的整數倍
另外漸變默認的模式爲android:type="linear",即線性漸變,
.net

能夠指定漸變爲徑向漸變,android:type="radial",徑向漸變須要指定半徑android:gradientRadius="50"。
3d

angle值對應的位置如圖:code




stroke:描邊
android:width="2dp" 描邊的寬度,android:color 描邊的顏色。
咱們還能夠把描邊弄成虛線的形式,設置方式爲:
android:dashWidth="5dp" 
android:dashGap="3dp"
其中android:dashWidth表示'-'這樣一個橫線的寬度,android:dashGap表示之間隔開的距離
orm


corners:圓角
android:radius爲角的弧度,值越大角越圓。
咱們還能夠把四個角設定成不一樣的角度,
xml

同時設置五個屬性,則Radius屬性無效htm

android:Radius="20dp"                           設置四個角的半徑blog

android:topLeftRadius="20dp"              設置左上角的半徑 
android:topRightRadius="20dp"           設置右上角的半徑 
android:bottomLeftRadius="20dp"      設置右下角的半徑 
android:bottomRightRadius="20dp"    設置左下角的半徑


padding:間隔
能夠設置上下左右四個方向的間隔


在這裏咱們來看一個簡單的小例子,ShapDemo,在drawable文件夾下面先定義兩個xml文件:

button_bg.xml的內容以下:

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片

  1. <?xml version="1.0" encoding="utf-8"?>  

  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >  

  3.       

  4.     <!-- 填充 -->  

  5.     <solid android:color="#ff9d77" /> <!-- 定義填充的顏色值 -->  

  6.       

  7.     <!-- 描邊 -->  

  8.     <stroke  

  9.         android:width="2dp"   

  10.         android:color="#fad3cf" /> <!-- 定義描邊的寬度和描邊的顏色值 -->  

  11.       

  12.     <!-- 圓角 -->  

  13.     <corners  

  14.         android:bottomLeftRadius="5dp"  

  15.         android:bottomRightRadius="5dp"  

  16.         android:topLeftRadius="5dp"  

  17.         android:topRightRadius="5dp" /> <!-- 設置四個角的半徑 -->  

  18.       

  19.     <!-- 間隔 -->  

  20.     <padding  

  21.         android:bottom="10dp"  

  22.         android:left="10dp"  

  23.         android:right="10dp"  

  24.         android:top="10dp" /> <!-- 設置各個方向的間隔 -->  

  25.   

  26. </shape>  


button_pressed_bg.xml的內容以下:

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片

  1. <?xml version="1.0" encoding="utf-8"?>  

  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >  

  3.   

  4.     <!-- 漸變 -->  

  5.     <gradient  

  6.         android:endColor="#FFFFFF"  

  7.         android:gradientRadius="50"  

  8.         android:startColor="#ff8c00"  

  9.         android:type="radial" />  

  10.       

  11.     <!-- 描邊 -->  

  12.     <stroke  

  13.         android:dashGap="3dp"  

  14.         android:dashWidth="5dp"  

  15.         android:width="2dp"  

  16.         android:color="#dcdcdc" />  

  17.       

  18.     <!-- 圓角 -->  

  19.     <corners android:radius="5dp" />  

  20.       

  21.     <!-- 間隔  -->  

  22.     <padding  

  23.         android:bottom="10dp"  

  24.         android:left="10dp"  

  25.         android:right="10dp"  

  26.         android:top="10dp" />  

  27.   

  28. </shape>  


這裏說明一點,在描邊裏面設置了dash參數,使得圖形的邊變成了虛線

在drawable文件夾下添加一個button.xml文件,內容以下:

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片

  1. <?xml version="1.0" encoding="utf-8"?>  

  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">  

  3.   

  4.     <item android:drawable="@drawable/button_pressed_bg" android:state_pressed="true"></item>  

  5.     <item android:drawable="@drawable/button_bg"></item>  

  6.   

  7. </selector>  


這個文件的意思之前講過,normal(正常)狀況下就顯示button_bg,被press(按下)狀況下就顯示button_pressed_bg。


咱們再來看一下layout目錄下的activity_main.xml的內容:

[html] view plain copy 在CODE上查看代碼片派生到個人代碼片

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  

  2.     xmlns:tools="http://schemas.android.com/tools"  

  3.     android:layout_width="match_parent"  

  4.     android:layout_height="match_parent" >  

  5.   

  6.     <Button  

  7.         android:layout_width="wrap_content"  

  8.         android:layout_height="wrap_content"  

  9.         android:background="@drawable/button"  

  10.         android:text="TestShapeButton" />  

  11.   

  12. </RelativeLayout>  


直接將background指定爲drawable文件夾下的button.xml。


程序運行截圖以下:

相關文章
相關標籤/搜索