本文主要是介绍Android shape 图形,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <!-- "oval","rectangle", "line","ring" 形状--><!-- 圆角 --><cornersandroid:radius="8dp"android:topLeftRadius="5dp"android:topRightRadius="5dp"android:bottomLeftRadius="15dp"android:bottomRightRadius="15dp"/><!-- 设置各个角的圆角 --><!-- 渐变 --><gradientandroid:startColor="@android:color/red"android:centerColor="@android:color/green"android:endColor="@android:color/white"android:useLevel="true"android:angle="45"android:type="radial"android:centerX="0"android:centerY="0"android:gradientRadius="90"/><!-- 间隔 --><paddingandroid:left="2dp"android:top="2dp"android:right="2dp"android:bottom="2dp"/><!-- 各方向的间隔 --><!-- 大小 --><sizeandroid:width="50dp"android:height="50dp"/><!-- 宽度和高度 --><!-- 填充 --><solidandroid:color="@android:color/white"/><!-- 填充的颜色 --><!-- 描边 --><strokeandroid:width="2dp"android:color="@android:color/black"android:dashWidth="1dp"android:dashGap="2dp"/> <!-- 设置边框虚线 --></shape>
shape用于设定形状,可以在selector,layout等里面使用,有6个子标签
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"> <!-- "oval","rectangle", "line","ring" 形状-->
android:shape="oval" 指定绘制图形的形装
"oval":椭圆 当高宽相等时也就是圆形
"rectangle",:长方形
"line",:线形
"ring":环形
填充:设置填充的颜色
间隔:设置四个方向上的间隔
大小:设置高宽大小
圆角:同时设置五个属性,则Radius属性无效
android:Radius="10dp" 设置四个角的半径
android:topLeftRadius="10dp" 设置左上角的半径
android:topRightRadius="10dp" 设置右上角的半径
android:bottomLeftRadius="10dp" 设置右下角的半径
android:bottomRightRadius="10dp" 设置左下角的半径
描边:dashWidth和dashGap属性,只要其中一个设置为0dp,则边框为实现边框
android:width="20dp" 设置边边的宽度
android:color="@android:color/black" 设置边边的颜色
android:dashWidth="2dp" 设置虚线的宽度
android:dashGap="20dp" 设置虚线的间隔宽度
渐变:当设置填充颜色后,无渐变效果。
angle的值必须是45的倍数(包括0),仅在type="linear"有效,不然会报错。
android:startColor="@android:color/red" 渐变开始颜色
android:centerColor="@android:color/green" 渐变中间颜色
android:endColor="@android:color/white" 渐变结束颜色
android:useLevel="true"
android:angle="45" 渐变色的角度,必须为0或45的整数倍 0,45,90,135,180,225,270,315等可取值。
android:type="radial" 渐变类型“sweep”,“radial”,"linear"
android:centerX="0" 渐变X轴中心可以是0 或 百分比,如:50%
android:centerY="0" 渐变Y轴中心可以是0 或 百分比,如:50%
android:gradientRadius="90" 渐变的半径type="radial"时使用
这篇关于Android shape 图形的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!