RecyclerView scrolls to bottom when data is loaded
问题 I have some weird issue with RecyclerView since I changed my app to load the data from Room database. I have a screen (a Fragment ) which displays a Profile for a user. Basically it's a GridLayout with the first item (row) displaying some info about the user and then for each row I'm displaying three images. The code for the RecyclerView is : private void initializeRecyclerView() { if (listAdapter == null) { listAdapter = new PhotosListAdapter(getActivity(), userProfileAccountId, false); }