<?xml version="1.0" encoding="utf-8"?><!--//view的各种状态(正常无焦点,焦点,onclick按下、放开等等--><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item android:state_pressed="true">        <shape>            <stroke android:color="#2ae6fc" android:width="1dp"/>            <solid android:color="@color/custom_dialog_btn_pressed"/>            <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"                     android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp" />        </shape>    </item>    <item android:state_focused="true">        <shape>            <stroke android:color="#2ae6fc" android:width="1dp"/>            <solid android:color="@color/custom_dialog_btn_pressed"/>            <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"                     android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp" />        </shape>    </item>    <item >        <shape>            <stroke android:color="#2ae6fc" android:width="1dp"/>            <solid android:color="@color/custom_dialog_btn_normal"/>            <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"                     android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp" />        </shape>    </item></selector>





shape的属性介绍:


<!--实心-->

<solidandroid:color="#ff9d77"/>


<!--渐变-->

<gradient

android:startColor="#ff8c00"android:endColor="#FFFFFF"android:angle="270"/>


<!--描边-->

<strokeandroid:width="2dp"android:color="#dcdcdc"/>


<!--圆角-->

<cornersandroid:radius="2dp"/>


下面是上面属性的说明


solid:实心,就是填充的意思

android:color指定填充的颜色

gradient:渐变

android:startColor和android:endColor分别为起始和结束颜色,android:angle是渐变角度,必须为45的整数倍。

另外渐变默认的模式为android:type="linear",即线性渐变,可以指定渐变为径向渐变,android:type="radial",径向渐变需要指定半径android:gradientRadius="50"。


stroke:描边

android:width="2dp"描边的宽度,android:color描边的颜色。

我们还可以把描边弄成虚线的形式,设置方式为:

android:dashWidth="5dp"

android:dashGap="3dp"

其中android:dashWidth表示'-'这样一个横线的宽度,android:dashGap表示之间隔开的距离。


corners:圆角

android:radius为角的弧度,值越大角越圆。

我们还可以把四个角设定成不同的角度,方法为:

<corners

android:topRightRadius="20dp"右上角

android:bottomLeftRadius="20dp"右下角

android:topLeftRadius="1dp"左上角

android:bottomRightRadius="0dp"左下角

/>


这里有个地方需要注意,bottomLeftRadius是右下角,而不是左下角,这个有点郁闷,不过不影响使用,记得别搞错了就行。

还有网上看到有人说设置成0dp无效,不过我在测试中发现是可以的,我用的是2.2,可能修复了这个问题吧,如果无效的话那就只能设成1dp了。




更多相关文章

  1. android Button 切换背景,实现动态按钮和按钮颜色渐变
  2. 如何在XML设定android控件的颜色(十六进制颜色码)
  3. android 动态设置background颜色
  4. android textview部分字体变颜色
  5. android常用颜色
  6. android颜色管理
  7. android textview 部分文字加颜色并可点击
  8. android圆形进度条ProgressBar颜色设置
  9. Android splitActionBarWhenNarrow ActionBar背景颜色设置

随机推荐

  1. Handler+ExecutorService(线程池)+Messag
  2. Android 死机问题分析方法收集
  3. android 网络请求方式 例子
  4. Android Studio安装使用图文教程
  5. Android(安卓)gallery实现选中放大的效果
  6. Android 读取doc文件
  7. 【Arcgis android】 离线编辑实现及一些
  8. Android:TextSwitcher、imageSwitcher
  9. Android一些网站介绍
  10. Android中,把XML文件转换成Object对象的方