android - What should I do to activate ListView in class which not extends ListActivity? -
i have http://developer.android.com/resources/tutorials/views/hello-listview.html tutorial , want same in class. don't want in activity class!!!
//you need extends activity
and in oncreate() method
you need listview id
listview mylistview=(listview)findviewbyid(r.id.mylist); mylistview.setadapter(...);
Comments
Post a Comment