我试图应用一个线性渐变到我的 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"
它工作,但它看起来非常“带”在模拟器和一个真正的设备也。
有没有办法减少这种“行为”?