我的RecyclerView包含CardView列表
MainActivity的xml:
<android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.AppBarLayout>
<android.support.v7.widget.Toolbar/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView>
<android.support.v7.widget.RecyclerView
android:id="@+id/view_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.NestedScrollView>
<FloatingActionButton/>
</android.support.design.widget.CoordinatorLayout>
我使用上面的RecyclerView适配器来包含卡片。
xml用于在适配器内充气ViewHolder:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/relativeLayout"
android:paddingTop="2dp"
android:paddingRight="2dp"
android:paddingLeft="2dp"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants">
<android.support.v7.widget.CardView
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardBackgroundColor="@android:color/holo_red_light"
card_view:cardPreventCornerOverlap="true"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="3dp"
card_view:contentPadding="7dp"
card_view:cardUseCompatPadding="true">
<RelativeLayout
android:id="@+id/relat"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="false"
android:padding="10dp">
<TextView/>
//...
</RelativeLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>
为了使卡片可以点击,我在these - two热门帖子中尝试了所有解决方案,但我总是有这个奇怪的错误:
当我第一次启动应用程序时,卡片列表不会滚动,除非我点击RecyclerView一次。这就好像RecyclerView最初没有成为焦点一样。
此外,如果我摆脱所有点击侦听器或类似方法使CardView可点击,并且只将可聚焦代码保留在xml中:
android:focusable="true"
android:focusableInTouchMode="false"
,然后它立即滚动,但只要我添加任何点击(监听)机制,甚至包括&#34; android:clickable =&#34; true&#34;&#34;对于ViewHolder,该错误重新出现。 请指教。谢谢
答案 0 :(得分:1)
你永远不应该在RecyclerView
内嵌套ScrollView
。只需删除NestedScrollView
,RecyclerView
即可完成滚动行为。
<android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.AppBarLayout>
<android.support.v7.widget.Toolbar/>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/view_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>
答案 1 :(得分:0)
原来滚动问题与RecyclerView无关。这是由于我使用的一个开源小部件锚定到RV并以某种方式干扰了聚焦/滚动/触摸拦截。经过几天寻找其他地方后,终于摆脱了这个错误。
谢谢你们所有人