android:shape妙用

android:shape這個文件或者說屬性是控制組件特性特別有用,往上搜刮的內容講解很迂腐,仍是本身上手試了一下才感受稍微入了門,很少說,上代碼。 我以Button爲例,來展現shape的用法。 佈局文件送上: <!-- lang: java --> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" >java

<Button 
    android:id="@+id/btnTest"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:text="組件"
    android:layout_centerInParent="true"
    />

</RelativeLayout> Button的原始特性如圖:![能夠看出,照片很呆板][1] [1]: http://static.oschina.net/uploads/space/2015/0301/141755_uycv_734421.jpgandroid

下面介紹shape裏第一個屬性:gradient ,這個屬性表示,組件內部顏色的漸變,漸變由android:startColor和android:endColor來實現,這個很好理解,另一個很重要的標籤是漸變的角度android:angle,這個比較難,讓咱們上手看看,

首先Button須要先引用shape.xml這個文件,接下來我設置了四個比較典型的角度:0度,45度,90度,180度,看圖。 <!-- lang: java --> <gradient android:startColor="#000" //結束漸變顏色黑色 android:endColor="#FFF" //起始漸變顏色白色 android:angle="" //漸變角度 /> 0度 45度 45度 90度 180度 漸變方向和角度的關係已經很明顯了。 corners:本義是角落,在android裏角,就是四個角,這個屬性很簡單,只有半徑這個標籤須要記住 <!-- lang: java --> <!-- 組件圓角以及角半徑 --><!-- radius後邊屬性會覆蓋android:radius --> <corners android:radius="10dp" android:topLeftRadius="10dp"
android:topRightRadius="20dp" android:bottomLeftRadius="30dp" //bottomLeftRadius和bottomRightRadius兩個屬性是顛倒的,這個須要注意 android:bottomRightRadius="40dp" /> stroke:就是border,邊框,搜到的文檔都叫描邊,雲裏霧裏啊看的, <!-- lang: java --> <stroke android:color="#FF0000" //邊框顏色 android:width="4dp" //邊框寬度 android:dashWidth="4dp" //虛線邊框寬度 android:dashGap="10dp" //虛線邊框寬度 /> 按照以上corners和stroke屬性產生的圖以下 附贈一個外國人的黑技術~ide

相關文章
相關標籤/搜索