ListViewに線形グラデーションを適用しようとしています。これは私のドローアブルxmlの内容です:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#3A3C39"
android:endColor="#181818"
android:angle="270"
/>
<corners android:radius="0dp" />
</shape>
だから私はそれを私のListViewに適用します:
android:background="@drawable/shape_background_grey"
動作しますが、エミュレーターや実際のデバイスでも非常に「バンド」に見えます。
この「振る舞い」を減らす方法はありますか?