multiple listview in one activity
问题 Sorry if I can not speak good English, how have multiple Listview in one activity that extends ListActivity such as private List<Tour> tours; ArrayAdapter<Tour> adapter = new ArrayAdapter<Tour>(this, android.R.layout.simple_list_item_1, tours); setListAdapter(adapter); this code is for one Listview in activity that Listview's id is @android:id/list but i have two or more Lisview in one activity Please guide me 回答1: You should extends Activity instead of ListActivity in your code. And in your