android shape的使用

在看很多开源代码中都使用到了shape,我看代码的时候一般都一带而过了,没有仔细去研究,这几天刚好有空就顺带详细了解一下,在学习的过程中参考了官方文档和网上的示例代码,本文后面会附上测试代码。

方法/步骤
一、在res/drawable文件夹下创建一个名为gradient_box的xml文件:



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


android:radius="8dp"
android:topLeftRadius="5dp"
android:topRightRadius="15dp"
android:bottomLeftRadius="20dp"
android:bottomRightRadius="25dp"
/>


android:startColor="#FFFF0000"
android:endColor="#80FF00FF"
android:angle="45"
/>


android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp"
/>


android:width="600dp"
/>


android:color="#ffff9d77"
/>


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

二、在窗口布局文件中将步骤一中创建的文件作为TextView的背景:

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ShapeTest"
android:background="@drawable/gradient_box"
android:textSize="24.0dp"
android:textColor="@android:color/black"
/>


========================================================================

shape用于设定形状,可以在selector,layout等里面使用,有6个子标签,各属性如下:

复制代码




android:radius="9dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp"
android:bottomLeftRadius="2dp"
android:bottomRightRadius="2dp"/>


android:startColor="@android:color/white"
android:centerColor="@android:color/black"
android:endColor="@android:color/black"
android:useLevel="true"
android:angle="45"
android:type="radial"
android:centerX="0"
android:centerY="0"
android:gradientRadius="90"/>


android:left="2dp"
android:top="2dp"
android:right="2dp"
android:bottom="2dp"/>


android:width="50dp"
android:height="50dp"/>


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


android:width="2dp"
android:color="@android:color/black"
android:dashWidth="1dp"
android:dashGap="2dp"/>


复制代码
填充:设置填充的颜色

间隔:设置四个方向上的间隔

大小:设置大小

圆角:同时设置五个属性,则Radius属性无效

android:Radius="20dp" 设置四个角的半径

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

描边:dashWidth和dashGap属性,只要其中一个设置为0dp,则边框为实现边框

android:width="20dp" 设置边边的宽度
android:color="@android:color/black" 设置边边的颜色
android:dashWidth="2dp" 设置虚线的宽度
android:dashGap="20dp" 设置虚线的间隔宽度

渐变:当设置填充颜色后,无渐变效果。angle的值必须是45的倍数(包括0),仅在type="linear"有效,不然会报错。android:useLevel 这个属性不知道有什么用。

angle对应值的起点如图:
[img]http://images.cnblogs.com/cnblogs_com/cyanfei/201207/201207271623578045.jpg[/img]

你可能感兴趣的:(Android,资源分类)