vanniktech / Emoji

A library to add Emoji support to your Android / iOS / JVM Application
Apache License 2.0
1.52k stars 291 forks source link

How to scroll the recyclerview to the bottom when keyboard visibility changes #943

Closed SujithManjavana closed 1 year ago

SujithManjavana commented 1 year ago

Earlier I used the following code to scroll the chat to the bottom when keyboard visibility changes, View rootView = findViewById(R.id.chat_root_view).getRootView(); ViewCompat.setOnApplyWindowInsetsListener(rootView, (v, insets) -> { scrollToBottom(); return insets; }); But after adding EmojiKeyboard to my project it is not working. How can I fix it?

vanniktech commented 1 year ago

Please consult with the sample app and otherwise ask on Stackoverflow.