[android-developers] Re: ListView set default checked state

2009-02-11 Thread bharath kumar
I am also facing the same problem Steve can u please tell us how u resolve the problem..as u said in ur previous post. Its urgent... Regards Bharat. On Fri, Nov 21, 2008 at 10:11 AM, songs coca.c...@gmail.com wrote: I ended up fixing this by moving my initialization loop from onCreate

[android-developers] Re: ListView set default checked state

2008-11-20 Thread Armando
I achieved this by creating a custom Adapter. All you need to do is to create a new class that extends the BaseAdapter abstract class, then for the implementation you can take a look at the following sample from the API demos:

[android-developers] Re: ListView set default checked state

2008-11-20 Thread songs
I ended up fixing this by moving my initialization loop from onCreate to onResume and that worked. On Nov 19, 3:03 pm, Armando [EMAIL PROTECTED] wrote: I achieved this by creating a custom Adapter. All you need to do is to create a new class that extends the BaseAdapter abstract class, then