[android-developers] Re: How to switch from Activity to ListActivity ?

2009-01-22 Thread Scynasty
you have to create another class which extends listadapter either in the same java file or a new one. On Jan 22, 8:02 am, Nico nicolas.d...@gmail.com wrote: Hi, I have a main class derived from Activity, I need a ListActivity (displayed when the menu button is clicked). How can I proceed. I

[android-developers] Re: How to switch from Activity to ListActivity ?

2009-01-22 Thread Dianne Hackborn
You don't -have- to derive from ListActivity, that class is just a convenience for the common case when an activity contains a list. You can just use a regular Activity and put a list in its content view hierarchy if you want. On Thu, Jan 22, 2009 at 5:02 AM, Nico nicolas.d...@gmail.com wrote: