Last active
September 21, 2018 17:37
-
-
Save fatorx/c0398e5793a1a3d86681 to your computer and use it in GitHub Desktop.
Para inverter a ordem dos itens de um recycler view, para ficar parecido com o formato de mensagens do WhatsApp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recyclerView = (RecyclerView) findViewById(R.id.rvMessagesList); | |
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(MessageThreadActivity.this); | |
linearLayoutManager.setStackFromEnd(true); | |
linearLayoutManager.setReverseLayout(false); | |
recyclerView.setLayoutManager(linearLayoutManager); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment