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"
動作しますが、エミュレーターと実際のデバイスでも非常に「縞模様」に見えます。
この「動作」を減らす方法はありますか?