CSSグラデーションのような効果が欲しかった
-webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0b7a1), color-stop(50%,#8c3310), color-stop(51%,#752201), color-stop(100%,#bf6e4e));
私のアンドロイド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"/>
これを行うにはどのような方法がありますか?