Skip to content Skip to sidebar Skip to footer

Multiautocompletetextview Doesn't Show Results

I have this code on my activity: ParseQuery query = ParseUser.getQuery(); query.findInBackground(new FindCallback() { public void done(List<

Solution 1:

I don't have much experience with MultiAutoCompleteTextViews, but according to this tutorial you need to add this lines before setting the adapter:

friendChooser.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
friendChooser.setInputType(InputType.TYPE_CLASS_TEXT);
friendChooser.setThreshold(1);

and then call:

friendChooser.setAdapter(aAdapter);

It worked for me

Post a Comment for "Multiautocompletetextview Doesn't Show Results"