以下の新しい Google Play のような Androidy リスト タイル レイアウトを実装したいと思います。
必ずしも正確なコンテンツを実装する必要はなく、リスト項目のタイルのようなレイアウトのみを実装する必要があります。色、マージン、各アイテムの下に非常に微妙な影を設定する方法など、どの属性を設定する必要があるかを知っている人はいますか?
次のリストビューがあります
<ListView
android:id="@+id/cardList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="6dp"
android:background="@color/light_gray"
android:cacheColorHint="@null"
android:divider="@null"
android:fadingEdge="none"
android:listSelector="@android:drawable/selector" />
およびselector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/pressed"
android:state_pressed="true"/>
<item
android:drawable="@drawable/pressed"
android:state_selected="true"/>
<item
android:drawable="@drawable/default"/>
</selector>
しかし、それでもうまくいきません。どこに問題があるのでしょうか?