我想要一些像 CSS 渐变这样的效果
-webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0b7a1), color-stop(50%,#8c3310), color-stop(51%,#752201), color-stop(100%,#bf6e4e));
我的 android xml 可绘制代码如下:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@color/transparent"
android:centerColor="#33b5e5"
android:endColor="@color/transparent"
android:angle="90"/>
</shape>
所以我想要实现的是添加这样的百分比:
<gradient
android:startColor="@color/transparent"
android:25%="#09c"
android:centerColor="#33b5e5"
android:75%="#09c"
android:endColor="@color/transparent"
android:angle="90"/>
有什么方法可以做到这一点吗?