I have an AutoCompleteTextView in my app which works. I have successfully created an onClickItemListener. The question is how to grab the text the
AutoCompleteTextView
onClickItemListener
One another of getting text of suggestion selected in AutoCompleteTextView is
@Override public void onItemClick(AdapterView> parent, View view,int position, long id) { TextView txtvw=(TextView) view; String str=txtvw.getText().toString(); int index = contactNames.indexOf(str); }