我正在尝试对我的 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"
它可以工作,但在模拟器和真实设备上看起来也很“带状”。
有没有办法减少这种“行为”?