I applied a MultiAutoCompleteTextView in my application. Most of the function may be treat as RECEIVER box of email app. I used a custom adapter with hashMap to store the Name and Id as sources of suggestion. When user click the name suggested (only name will show at suggestion list) the Id will programmatically add in a ID_list(arrayList) for next operation.
The problem is, user may click wrongly or change mind
1) How can I update the arrayList(ID_list) when user delete some of the names in MultiAutoCompleteTextView ??
2) How to delete a item (in multiautocompletetextview) with one Backspace click but not one character by on character??
Thank you very much.