w446108264 / XhsEmoticonsKeyboard

android emoticonsKeyboard support emoji and user-defined emoticon. easy to integrated into your project
2.85k stars 599 forks source link

RecyclerView #62

Open yc654084303 opened 6 years ago

yc654084303 commented 6 years ago

是不时不兼容RecyclerView啊,把listview换成RecyclerView布局不顶上去了

AikinLei commented 5 years ago

是不时不兼容RecyclerView啊,把listview换成RecyclerView布局不顶上去了

不是布局顶不上去了,而是需要你添加addOnFuncKeyBoardListener的监听 ,然后在OnFuncPop回调中调用ScrollToBottom方法

private void scrollToBottom() { mMessageRecyclerView.requestLayout(); mMessageRecyclerView.post(new Runnable() { @Override public void run() { mMessageRecyclerView.scrollToPosition(mChatMessageAdapter.getItemCount()-1); } }); }