本文主要是介绍自定义自变色的圆角边框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
用gradient来自定义自变色color,angle代表角度,0-360度
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"><gradientandroid:startColor="#E26DFF"android:endColor="#9B42FF"android:angle="360" /><!--9B42FF--><corners android:topLeftRadius="20dp"android:topRightRadius="20dp"android:bottomRightRadius="20dp"android:bottomLeftRadius="20dp"/><stroke android:width="1dp" android:color="#000000" />
</shape>
这是360度
这是180度
这是90度
这是 45度
0-90度代表上下,180-360代表左右,而且是endColor在前/在上,startColor在后/在下
这篇关于自定义自变色的圆角边框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!