I am developing a simple Android app. In my app I implement a toolbar and an actionbar with a ViewPager
for doing swipe between fragments, I am using a RecyclerView
to fill a list of movie and everything goes fine.
The app doesn't crash but in the Log Cat
appears a constant error every time I am scrolling over the list and swiping between fragments and I notice that my app runs slowly and has a terrible user experience.
IPerf
is not responsible for your slow app perfomance.MakeRecyclerview
smooth scrollable and use ` android:nestedScrollingEnabled="false"` inside your recyclerview. – Etan