I am doing Build Spannable text using ImageSpan and then setText the Spannable to EditText for displaying Emoticons in Edittext. It is working fine. But I am facing a problem when I enter few emoticons and long press edittext field and select all. Then press a character on the keypad to replace all the emoticons with the character. It is not able to replace the emoticons with the entered character on the keypad. It is showing first emoticon in the edittext field.
Only onTextChanged() API is getting called, In that the CharSequence is received correctly with the entered letter on the keypad. But displays the first emoticon only.
Please help in this issue.