我在一个片段中有一个RecyclerView,当我在ViewHolder中实现OnClick时,它无法滚动。
当我实施OnClick时,列表是库存。
我使用v.getParent()。requestDisallowInterceptTouchEvent(true);因为AppBarLayout正在偷走我的垂直滚动而获得焦点。
JAVA:
private void initRecycleView() {
autoCompleteAdapter = new AutoCompleteSearchAdapter(getActivity(), this);
autoCompleteList.setLayoutManager(new LinearLayoutManager(getActivity()));
autoCompleteList.setAdapter(autoCompleteAdapter);
autoCompleteList.setOnTouchListener(new View.OnTouchListener() {
@Override public boolean onTouch(View v, MotionEvent event) {
v.getParent().requestDisallowInterceptTouchEvent(true);
return false;
}
});
}
XML:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:theme="@style/AppTheme.AppBarOverlay"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="78dp"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
/>
<include layout="@layout/widget_search_bar"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/fragment_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/cardview_dark_background"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:1)
您可以为每个setOnItemClickListener
实施itemView
界面,因为我在这里提供了答案,包括对该过程的解释。 RecyclerView - get Position inside Activity rather than RecyclerViewAdapter