添付の 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>