I want to know if there is any possible way to use RecyclerView?
Before this, I used RecyclerView with fixed height inside a
To fix fling in RecyclerView you must override canScrollVertically in LinearLayoutManager:
RecyclerView
canScrollVertically
LinearLayoutManager
linearLayoutManager = new LinearLayoutManager(context) { @Override public boolean canScrollVertically() { return false; } };