我正在实施一个循环视图来显示数据列表。我想在recycleview上突出显示所选项目。它在可点击,可聚焦和focusableInTouchMode的情况下正常工作。但在这种情况下,项目视图单击列表器无法正常工作。请帮帮我。
^\d+[;:]+$
这是我的选择器xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/cardlist_item"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:layout_marginEnd="3dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginStart="3dp"
android:layout_marginTop="1dp"
android:foreground="?android:attr/selectableItemBackground"
app:cardBackgroundColor="@color/bg_land"
app:cardCornerRadius="0dp"
app:cardElevation="@dimen/cardview_default_elevation">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/recycle_item_selector"
android:orientation="vertical">
//some stuff here
</LinearLayout>
</android.support.v7.widget.CardView>