Is there any event to detect auto suggestion word selected( dictionary) android keyboard.
below is the code which i am using to detect
    private final TextWatcher mTextWatcher = 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) {
    }
    @Override
    public void afterTextChanged(Editable s)
    {  
    }
};
 
    