作者:mobiledu2502880047 | 来源:互联网 | 2022-03-17 13:10
在Android程序开发中,我们经常会去用到Shape这个东西去定义各种各样的形状,本篇文章主要介绍了androidshape的使用,有兴趣的可以一起了解一下。
shape用于设定形状,可以在selector,layout等里面使用,有6个子标签,各属性如下:
<&#63;xml version="1.0" encoding="utf-8"&#63;>
填充:设置填充的颜色
间隔:设置四个方向上的间隔
大小:设置大小
圆角:同时设置五个属性,则Radius属性无效
- android:Radius="20dp" 设置四个角的半径
- android:topLeftRadius="20dp" 设置左上角的半径
- android:topRightRadius="20dp" 设置右上角的半径
- android:bottomLeftRadius="20dp" 设置右下角的半径
- android:bottomRightRadius="20dp" 设置左下角的半径
描边:dashWidth和dashGap属性,只要其中一个设置为0dp,则边框为实现边框
- android: 设置边边的宽度
- android:color="@android:color/black" 设置边边的颜色
- android:dash 设置虚线的宽度
- android:dashGap="20dp" 设置虚线的间隔宽度
渐变:当设置填充颜色后,无渐变效果。angle的值必须是45的倍数(包括0),仅在type="linear"有效,不然会报错。android:useLevel 这个属性不知道有什么用。
angle对应值的起点如图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。