我正在尝试使用状态列表drawable突出显示回收站视图项,但我的回收站视图项永远不会突出显示。我已经尝试了所有SO帖子,但没有解决我的问题。
这是我的recyclerView:
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:padding="@dimen/item_offset"
android:focusable="true"
android:clickable="true"
android:scrollbars="none"
android:drawSelectorOnTop="true"
android:listSelector="@drawable/highlight"
android:foreground="@drawable/highlight"
/>
我的单项代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:foreground="@drawable/highlight"
android:descendantFocusability="blocksDescendants"
android:padding="5dp">
<ImageView
android:id="@+id/grid_item_image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:foreground="@drawable/highlight"
android:clickable="true"
android:focusable="true"
android:scaleType="centerCrop">
</ImageView></RelativeLayout>
highlight.xml选择器代码是:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/blue" android:state_pressed="true" />
<item android:drawable="@color/blue" android:state_selected="true" />
<item android:drawable="@color/blue" android:state_focused="true" />
<item android:drawable="@color/white" /></selector>
我已经尝试了所有可能的解决方案。有人通过分享你宝贵的想法来帮助我吗?