Scroll RecyclerView up accordingly when keyboard opens

后端 未结 7 1853
情歌与酒
情歌与酒 2021-01-12 15:34

I have created a chat activity and like facebook messenger, there is an EditText at the bottom and above is the RecyclerView of messages. When Keyboard opens, I want to scro

7条回答
  •  别那么骄傲
    2021-01-12 16:14

    Try this

    LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
    linearLayoutManager.scrollToPosition(yourPosition);
    

提交回复
热议问题