Open sunnymopada opened 8 years ago
@mabbas007 Can you look at this? This is priority for me. Thanks
Try TagsEditText.setThreshold(0)
I tried that, but it did not work for me, After adding one tag I would like to show dropdown on onclick or onfocuschange, It is showing drop down only if TagsEditText is empty!
@mabbas007 According to source of autocompletetextview.
public void setThreshold(int threshold) {
if (threshold <= 0) {
threshold = 1;
}
mThreshold = threshold;
}
after adding one tag,
tagsEditText.showDropDown() is not showing the suggestions . Am I missing something?