Make Recycler View show rows from bottom

后端 未结 6 937
遇见更好的自我
遇见更好的自我 2021-01-03 17:24

I saw somewhere method to make RecyclerView show ViewHolders from bottom to top. Now, i can\'t find it anywhere (after half of hour going through <

6条回答
  •  余生分开走
    2021-01-03 18:12

    Solution on your query:


    LinearLayoutManager layoutManager=
                    new LinearLayoutManager(getApplicationContext(),LinearLayoutManager.VERTICAL,true);
                    layoutManager.setStackFromEnd(true);
            recyclerView.setLayoutManager(layoutManager); 
    

    In above code recyclerView is the id of RecyclerView and layoutManager is object of LinearLayoutManager.

提交回复
热议问题