RecyclerView is not showing all items in the list
in your layout tourist_details_info.xml make the parent height from match_parent to specific height (100dp or something) or use wrap_content
as android:layout_height="match_parent"
If you are using RecyclerView
inside ScrollView
then replace ScrollView
with NestedScrollView
.
Enable android:nestedScrollingEnabled="false"
in RecyclerView.
This solved my problem.