Fix EmojiView scroll in bottomsheet.

This commit is contained in:
Sagar
2025-04-02 00:46:15 +05:30
committed by Michelle Tang
parent 13be8d511c
commit 042ab95738
3 changed files with 9 additions and 21 deletions

View File

@@ -112,6 +112,12 @@ public class EmojiPageView extends RecyclerView implements VariationSelectorList
addItemDecoration(new EmojiItemDecoration(allowVariations, drawable));
}
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
getParent().requestDisallowInterceptTouchEvent(true);
return super.dispatchTouchEvent(ev);
}
public void presentForEmojiKeyboard() {
setPadding(getPaddingLeft(),
getPaddingTop(),