首页 > 代码库 > Android UI(一)Layout 背景局部Shape圆角设计
Android UI(一)Layout 背景局部Shape圆角设计
Jeff Lee blog: http://www.cnblogs.com/Alandre/ (泥沙砖瓦浆木匠),retain the url when reproduced ! Thanks
今天我们来Android UI第一讲:实现Layout 背景局部Shape圆角设计
效果图:
第一步:定义一个shape
res/drawable/shape_to_corner_no_bottom_line.xml
<?xml version="1.0" encoding="utf-8"?><layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item> <!-- shape with circle-top corner --> <shape> <!-- the shape background color --> <solid android:color="@color/black"/> <corners android:topLeftRadius="10dp" android:topRightRadius="10dp" android:bottomLeftRadius="0.1dp" android:bottomRightRadius="0.1dp"/> <stroke android:width="1dp" android:color="@color/black"/> </shape> </item></layer-list>
其中参数含义:{英语单词顾名思义}
这是参数详解 <!-- 圆角 --> <corners android:radius="9dp" android:topLeftRadius="2dp" android:topRightRadius="2dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp"/><!-- 设置圆角半径 --> <!-- 渐变 --> <gradient 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"/> <!-- 间隔 --> <padding android:left="2dp" android:top="2dp" android:right="2dp" android:bottom="2dp"/><!-- 各方向的间隔 --> <!-- 大小 --> <size android:width="50dp" android:height="50dp"/><!-- 宽度和高度 --> <!-- 填充 --> <solid android:color="@android:color/white"/><!-- 填充的颜色 --> <!-- 描边 --> <stroke 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 这个属性不知道有什么用。
第二步: Layout中设置
android:background="@drawable/shape_to_corner_no_bottom_line"
这样就简单的设置好了。
Android UI(一)Layout 背景局部Shape圆角设计
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。