It seems that android has enforced that a listview must have the name android:id=”@android:id/list”, is there anyway to create multiple listview then? I have two activities which are both listview but have to control different format of Lists, one with image+text the other is just text.
It seems that android has enforced that a listview must have the name android:id=@android:id/list,
Share
Extend
Activity(instead ofListActivity) and inflate a layout with any number ofListViewsyou like.