Android MultiAutoCompleteTextView
I need to show the list of friends when the user types a letter in Edittext like Twitter.I have tried with MultiAutoCompleteTextView and it works fine if the arraylist is loaded be
Solution 1:
Thank you psknik.Solution is
CharSequence constraint = actv.getText();
        adapter.getFilter().filter(constraint);
        actv.showDropDown();
Post a Comment for "Android MultiAutoCompleteTextView"