android - Configure RecyclerView to work as a chat -
to enable chat-style scrolling in list view, can use following properties:
<listview android:layout_width="wrap_content" android:layout_height="wrap_content" .... android:stackfrombottom="true" android:transcriptmode="normal" />
it simple , efficient way create chat. how can same thing recycler view ? did not find simple solution.
regards,
recyclerview has stackfromend
attribute.
<android.support.v7.widget.recyclerview android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/recyclerview" android.support.v7.recyclerview:stackfromend ="true"/>
or can through code
mlayoutmanager = new linearlayoutmanager(getactivity()); mlayoutmanager.setreverselayout(true); mlayoutmanager.setstackfromend(true);
Comments
Post a Comment