欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Shape图形示例

程序员文章站 2022-03-11 18:53:40
...
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!--线形:line-->
<!--圆形:oval-->
<!--矩形:rectangle-->

<!--图形大小-->
<size
    android:height="30dp"
    android:width="30dp"

    />

<!--变框属性-->
<!--
边框的颜色
边框的宽度
虚线的长度
虚线之间的间隙
 -->
<stroke
    android:color= "#ff0000"
    android:width= "4dp"
    android:dashWidth= "10dp"
    android:dashGap= "4dp"
    />

<!--圆角属性-->
<corners
    android:bottomLeftRadius="10dp"
    android:bottomRightRadius="10dp"
    android:topLeftRadius="10dp"
    android:topRightRadius="10dp"
    />

<!--内部填充属性-->
<solid
    android:color="#F05F4C"
    />

<!--渐变色属性-->
<!--注意:angel(角度)需要是45的倍数-->
<gradient
    android:angle="0"
    android:centerColor="#ff00ff"
    android:endColor="#55ff00"
    android:startColor="#ffcdcd"></gradient>
<!--内边距属性-->
<!-- 内边距 -->
<padding
    android:left="10dp"
    android:right="10dp"
    android:top="10dp"
    android:bottom="10dp"
    />

</shape>

本文地址:https://blog.csdn.net/m0_48396761/article/details/107948255