I have a RecyclerView
that just rolls with the finger glued to the screen, if I make that fast move, to roll enough items, it just roll while the finger is on the screen, and then to. I've refined it all, and the problem continues.
XML:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/recyclerViewOf"
android:scrollbars="horizontal"
android:clipToPadding="true"
android:clipChildren="true" />
Java:
RecyclerView.LayoutManager lnm = new GridLayoutManager(getBaseContext(),2);
recyclerView.setLayoutManager(lnm);
OfAdapter adapter = new OfAdapter(getBaseContext(),mList);
adapter.salvaContext(MainActivity.this);
recyclerView.setAdapter(adapter);
I have other RecyclerView
in the same app that are rolling normal.