We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi @Aghajari @vonox7 @Dor-Naim
Can i use open EmojiView without using AXEmojiEditText?
Thanks
The text was updated successfully, but these errors were encountered:
Hi @alihaider63 , i won't recommend this at all, but add this TextWatcher to your EditText if you wanted to use any other EditText
TextWatcher
EditText
edt.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) {} @Override public void onTextChanged(CharSequence s, int start, int before, int count) { final Paint.FontMetrics fontMetrics = edt.getPaint().getFontMetrics(); if (AXEmojiManager.isInstalled()) AXEmojiManager.getInstance().replaceWithImages(edt.getContext(), edt, edt.getText(), fontMetrics.descent - fontMetrics.ascent, fontMetrics); } @Override public void afterTextChanged(Editable s) {} });
Sorry, something went wrong.
Hi @Aghajari Thanks for your reply, actually I want to use EmojiPicker without EditText, in my case I want to use emojis as reactions on chat messages
No branches or pull requests
Hi @Aghajari @vonox7 @Dor-Naim
Can i use open EmojiView without using AXEmojiEditText?
Thanks
The text was updated successfully, but these errors were encountered: