Android

关注公众号 jb51net

关闭
首页 > 软件编程 > Android > Android开发shape属性子属性

Android开发手册shape属性和子属性使用说明

作者:芝麻粒儿

这篇文章主要为大家介绍了Android开发手册shape属性和子属性使用说明,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

😜shape属性详解

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadius="30dp"
    android:innerRadiusRatio="2"
    android:shape="ring"
    android:thickness="2dp"
    android:thicknessRatio="3"
    android:useLevel="false">
</shape>

😜子属性详解

<corners    //定义圆角   
    android:radius="10dp"      //全部的圆角半径,例:10dp  
    android:topLeftRadius="10dp"   //左上角的圆角半径,例:10dp  
    android:topRightRadius="10dp"  //右上角的圆角半径,例:10dp  
    android:bottomLeftRadius="10dp"    //左下角的圆角半径,例:10dp  
    android:bottomRightRadius="10dp" />    //右下角的圆角半径,例:10dp  
<solid android:color="#ffff00" /> //只有一个color,设置填充颜色即可。  
<gradient  
    android:type="linear"   //共有3中渐变类型,线性渐变(默认linear)/放射渐变(radial)/扫描式渐变(sweep)  
    android:angle="0"     //渐变角度,必须为45的倍数,0为从左到右,90为从上到下 ,仅在线性渐变生效  
    android:centerX="0.2"     //渐变中心X的相当位置,范围为0~1,多应用于放射渐变  
    android:centerY="0.1"     //渐变中心Y的相当位置,范围为0~1,多应用于放射渐变  
    android:startColor="#ff0000"   //渐变开始点的颜色  
    android:centerColor="#ffff00"  //渐变中间点的颜色,在开始与结束点之间   
    android:endColor="#00ff00"    //渐变结束点的颜色  
    android:gradientRadius="10"  //渐变的半径,只有当渐变类型为radial时才能使用   
    android:useLevel="false" />  //属性通常不使用。该属性用于指定是否将该shape当成一个LevelListDrawable来使用,默认值为false。
<stroke     
    android:width="dimension"    //表示描边的宽度 
    android:color="#00ff00"   //表示描边的颜色,例绿色 
    android:dashWidth="8dp"   //虚线的宽度,值为0时便是实线,例8dp宽
    android:dashGap="1dp" />   //虚线的间隔,例间隔1dp

以上就是Android开发手册shape属性和子属性使用说明的详细内容,更多关于Android开发shape属性子属性的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文