7
Android:使用线性渐变作为背景看起来很明显
我正在尝试将线性渐变应用于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> 所以我将它应用于: android:background="@drawable/shape_background_grey" 它可以工作,但在模拟器和实际设备上看起来也很“明显”。 有什么办法可以减少这种“行为”?