角が丸いリストビューがあります。これらのコーナーの背景を設定するにはどうすればよいですか? メインの背景のようにグレーに設定する必要がありますが、それらは白です。
私のリストビュー
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cats_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#000"
android:background="@drawable/round_corners"
/>
round_corners.xml :
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp"
android:topLeftRadius="17dp" android:topRightRadius="17dp"/>
<gradient
android:angle="180"
android:endColor="#ff0000"
android:startColor="#ff0000"
android:type="linear" />
</shape>