上部にラベルが付いた画面があります。このラベルはTextViewで作成されます。背景として、color1から始まり、color2に変更し、color1に戻る垂直方向のグラデーションが必要です。現時点で私は持っています:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke android:width="1px" android:color="#000000" />
<gradient
android:startColor="#FFFFFFFF"
android:centerColor="#FF8800"
android:endColor="#FFFFFFFF"
android:type="linear"
android:angle="270"
/>
<corners android:radius="10dp"/>
</shape>
私の問題は、centerColorの線が細すぎることです。すべての文字スペースを占有してほしい。グラデーションを速くする方法が見つかりません。私はすでにレイアウトリストを使おうとしましたが、成功しませんでした。
何か案が?