I have an autocompletetextview
where the user types, and a drop down menu populates. In this case, I am showing the user that a particular item name is used and therefore NOT available to be selected. I'd like to show the drop-down but make it NON-clickable? Is this possible?
This may not be relevant but it retrieves data from online database. I basically attach the word "Used: " + myString
and that is what populates.
Edit:
Here is adapter:
ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(
getApplicationContext(), R.layout.dialog_dropdown_list,
itemList);
etInsertAutoComplete.setAdapter(dataAdapter);