public void onAccessibilityEvent(AccessibilityEvent event) {
case AccessibilityEvent.CONTENT_CHANGE_TYPE_SUBTREE:
String text = event.getText().toString();
}
The current code even return the hint in the event.getText(), How to know whether the text is user entered or hint.