I am implementing chat application like whatsapp. I do have log list of messages that I will put in recycle view. Problem is that I am unable to reach at bottom of recycle view when it first time load all messages like whatsapp. I have tired this so far.
layoutManager = new LinearLayoutManager(requireActivity());
layoutManager.setReverseLayout(true);
chatMessageFragmentBinding.recycleViewMessageList.setLayoutManager(layoutManager);
chatMessageFragmentBinding.recycleViewMessageList.addOnScrollListener(onScrollListener);
chatMessageFragmentBinding.recycleViewMessageList.setAdapter(chatMessageAdapter);