在附加的 Gmail 应用截图中,ListView 的背景似乎在列表的右侧有一个垂直渐变,以与相邻的 View 分开。
我知道我可以在 xml 中定义 GradientDrawable,但是如何使用它来绘制渐变作为列表一侧的背景,同时将列表的其余部分绘制为浅灰色?
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#DDDDDD"
android:endColor="#CCCCCC"
android:angle="0" />
</shape>