Android控件系列之Shape使用方法
如果你对android系统自带的ui控件感觉不够满意,可以尝试下自定义控件,我们就以button为例,很早以前android123就写到过android button按钮控件美化方法里面提到了xml的selector构造。当然除了使用drawable这样的图片外今天android开发网谈下自定义图形shape的方法,对于button控件android上支持以下几种属性shape、gradient、stroke、corners等。
< android:startcolor="#ff8c00"
android:endcolor="#ffffff"
android:angle="270" />
< android:width="2dp"
android:color="#dcdcdc" />
< android:radius="2dp" />
< android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
对于上面,这条shape的定义,分别为渐变,在gradient中startcolor属性为开始的颜色,endcolor为渐变结束的颜色,下面的angle是角度。接下来是stroke可以理解为边缘,corners为拐角这里radius属性为半径,最后是相对位置属性padding。
对于一个button完整的定义可以为
<xmlns:android="http://schemas.android.com/apk/res/android">
<android:startcolor="#ff8c00"
android:endcolor="#ffffff"
android:angle="270" />
<android:width="2dp"
android:color="#dcdcdc" />
<android:radius="2dp" />
<android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
<android:startcolor="#ffc2b7"
android:endcolor="#ffc2b7"
android:angle="270" />
<android:width="2dp"
android:color="#dcdcdc" />
<android:radius="2dp" />
<android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
<android:startcolor="#ff9d77"
android:endcolor="#ff9d77"
android:angle="270" />
<android:width="2dp"
android:color="#fad3cf" />
<android:radius="2dp" />
<android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
提示,以上几个item的区别主要是体现在state_pressed按下或state_focused获得焦点时,当当来判断显示什么类型,而没有state_xxx属性的item可以看作是常规状态下。
推荐阅读
-
android UI进阶之android中隐藏的layout 抽屉的使用方法
-
Android控件系列之Shape使用方法
-
Android系列之Intent传递对象的几种实例方法
-
Android 布局控件之LinearLayout详细介绍
-
Android编程开发之打开文件的Intent及使用方法
-
Android中ToggleButton开关状态按钮控件使用方法详解
-
Android中ToggleButton开关状态按钮控件使用方法详解
-
Android中CheckBox复选框控件使用方法详解
-
Android中SeekBar拖动条控件使用方法详解
-
Android用户输入自动提示控件AutoCompleteTextView使用方法