Android shap 控件美化

<

div id=”content” contentScore=”3492″>Android中我们一般通过给控件设置png图片来改变控的外观,shap也能定义简单的图形来完成同样的的功能。

shap在drawable目录下,根节点为shap。

1.圆形或者椭圆形

android:shape=”oval”  椭圆

solid 颜色

控件长宽相等时显示圆,不相等时椭圆


    android:shape=”oval” >   

   

使用时与drawable下的资源方式相同

<TextView
        android:id=”@+id/textview1″
        android:layout_width=”30dp”
        android:layout_height=”30dp”
        android:background=”@drawable/textview_bg” />

2.圆角矩形
android:shape=”rectangle” 矩形

corners 半径,可以分别对四个角设半径

    android:shape=”rectangle” >

    <corners
        android:bottomLeftRadius=”10dip”
        android:bottomRightRadius=”10dip”
        android:topLeftRadius=”10dip”
        android:topRightRadius=”10dip” />

   

3.渐变

gradient渐变

startColor 起始颜色

endColor 结束颜色

angle 渐变角度

padding 与控件边缘的距离


    android:shape=”rectangle”>
    <gradient
        android:startColor=”#FFFF0000″
        android:endColor=”#80FF00FF”
        android:angle=”45″/>
            android:top=”7dp”
        android:right=”7dp”
        android:bottom=”7dp” />
   

4.边框效果

stroke 边框,可以设置颜色和宽度


    android:shape=”rectangle” >

    <corners
        android:bottomLeftRadius=”10dip”
        android:bottomRightRadius=”10dip”
        android:topLeftRadius=”10dip”
        android:topRightRadius=”10dip” />

   

            android:color=”@android:color/white”/>

5.圆环效果

就是shape=”oval” 椭圆  加上  stroke边框


    android:shape=”oval” >

    <corners
        android:bottomLeftRadius=”10dip”
        android:bottomRightRadius=”10dip”
        android:topLeftRadius=”10dip”
        android:topRightRadius=”10dip” />

   

            android:color=”@android:color/white”/>

最简单的Ubuntu Touch & Android 双系统安装方式 http://www.linuxidc.com/Linux/2014-01/94881.htm

在Nexus上实现Ubuntu和Android 4.4.2 双启动 http://www.linuxidc.com/Linux/2014-05/101849.htm

Ubuntu 14.04 配置 Android SDK 开发环境 http://www.linuxidc.com/Linux/2014-05/101039.htm

64位Ubuntu 11.10下Android开发环境的搭建(JDK+Eclipse+ADT+Android SDK详细) http://www.linuxidc.com/Linux/2013-06/85303.htm

Ubuntu 14.04 x64配置Android 4.4 kitkat编译环境的方法 http://www.linuxidc.com/Linux/2014-04/101148.htm

Ubuntu 12.10 x64 安装 Android SDK http://www.linuxidc.com/Linux/2013-03/82005.htm

更多Android相关信息见Android 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=11</sp