Configure RecyclerView to work as a chat

前端 未结 3 1135
广开言路
广开言路 2020-12-28 21:24

To enable chat-style scrolling in a List View, we can use the following properties:



        
3条回答
  •  半阙折子戏
    2020-12-28 22:07

    RecyclerView has a stackFromEnd attribute.

    
    

    Or you can do it through code

    mLayoutManager = new LinearLayoutManager(getActivity());
    mLayoutManager.setReverseLayout(true);
    mLayoutManager.setStackFromEnd(true);
    

提交回复
热议问题