• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Using MultiAutoCompleteTextView

tokhi

Lurker
Code:
ListView list = new ListView(this);
            ArrayAdapter<String> arrayAdap = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,theArrayName);
            list.setAdapter(arrayAdap);
            setContentView(list);
 
Back
Top Bottom