3つの長方形の形状を描画しようとしています。
- ソリッドカラー
- 勾配
- 白い線
それ、どうやったら出来るの?
これを試してみるとうまくいきません。レイアウトには親の色があります。
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
android:height="60px"
>
<shape
android:shape="rectangle"
android:height="30px"
>
<solid
android:color="#ff297baf"
/>
</shape>
<shape
android:shape="rectangle"
android:height="30px"
>
<gradient
android:type="linear"
android:startColor="#ff297baf"
android:endColor="#ff16c0e3"
android:angle="270"/>
</shape>
<shape
android:shape="rectangle"
android:height="3px"
>
<solid
android:color="#FFFFFFFF"
/>
</shape>
</shape>
3色のグラデーションを作ろうとしています。単色#ff297baf
で開始し、60%でから#ff297baf
へのグラデーションを開始#ff16c0e3
し、最後にwhileラインを追加します。