To enable chat-style scrolling in a List View, we can use the following properties:
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
....
android:stackFromBottom="true"
android:transcriptMode="normal" />
It is a simple and efficient way to create a chat. How can we do the same thing with a recycler view ? I did not find any simple solution.
Regards,