I have a Scrollview which contains an ImageView and RecyclerView. if navigation drawer opened then closed the RecyclerView auto scrolling to top, How to stop this?
This problem because of recyclerView has default focus.
Solution
Add android:descendantFocusability="blocksDescendants" to your immediate layout of scrollView
android:descendantFocusability="blocksDescendants"