android开发之自定义shape

在android开发中 ,我们需要通过drawable图片来改变控件的背景或者样式。如果我们没有呢,就需要我们在控件中进行自定义控件样式。

自定义图形shape,Android上支持以下几种属性shape、gradient、stroke、corners、padding、solid等



    
    
    
    
    
    
    
    
    


    
    
    
    


填充:设置填充的颜色

间隔:设置四个方向上的间隔

大小:设置大小

圆角:同时设置五个属性,则Radius属性无效
android:Radius="2dp" 设置四个角的半径
android:topLeftRadius="2dp" 设置左上角的半径
android:topRightRadius="2dp" 设置右上角的半径
android:bottomLeftRadius="2dp" 设置右下角的半径
android:bottomRightRadius="2dp" 设置左下角的半径

描边:dashWidth和dashGap属性,只要其中一个设置为0dp,则边框为实现边框
android:width="2dp" 设置边边的宽度
android:color="@android:color/white" 设置边边的颜色
android:dashWidth="2dp" 设置虚线的宽度
android:dashGap="2dp" 设置虚线的间隔宽度

渐变:android:startColor和android:endColor分别为起始和结束颜色,
ndroid:angle是渐变角度,必须为45的整数倍。
另外渐变默认的模式为android:type="linear",即线性渐变,可以指定渐变为径向渐变,android:type="radial",径向渐变需要指定半径android:gradientRadius="50"。

你可能感兴趣的:(android开发之自定义shape)