我想像下面的新 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>
但它仍然不起作用。问题可能出在哪里?