Re: [android-developers] Help to set Background

2011-12-13 Thread skink
Kiran Kumar Kendole wrote: > Hi pskink , > > I tried in google.. no where i found source code for 0x01090010 ( the XML - > simple_list_item_multiple_choice). > Please let me know the links where can I get it. > > Thanks, > KIRANKUMARKENDOLE > > > On Tue, Dec 13, 2011 at 9:55 AM, skink wrote: > >

Re: [android-developers] Help to set Background

2011-12-13 Thread Kiran Kumar Kendole
Hi pskink , I tried in google.. no where i found source code for 0x01090010 ( the XML - simple_list_item_multiple_choice). Please let me know the links where can I get it. Thanks, KIRANKUMARKENDOLE On Tue, Dec 13, 2011 at 9:55 AM, skink wrote: > > > Kiran Kumar Kendole wrote: > > If I use my

Re: [android-developers] Help to set Background

2011-12-13 Thread skink
Kiran Kumar Kendole wrote: > If I use my custom list.. all the functionality will get disturbed. I need > exactly the same list type that > of android.R.layout.simple_list_item_multiple_choice . > Can you please suggest me other way. > > Thanks > KIRANKUMARKENDOLE > > simply copy simple_list_ite

Re: [android-developers] Help to set Background

2011-12-13 Thread Kiran Kumar Kendole
If I use my custom list.. all the functionality will get disturbed. I need exactly the same list type that of android.R.layout.simple_list_item_multiple_choice . Can you please suggest me other way. Thanks KIRANKUMARKENDOLE On Tue, Dec 13, 2011 at 8:23 AM, skink wrote: > > > Kiran Kumar Kendol

Re: [android-developers] Help to set Background

2011-12-13 Thread skink
Kiran Kumar Kendole wrote: > I gone through the two solutions. neither helped me . Can anybody please > help me. > My code is... > *ArrayAdapter adapter = new ArrayAdapter(this,* > * android.R.layout.simple_list_item_multiple_choice, values);* > * setListAdapter(adapter);* > * ListView list=getLi

Re: [android-developers] Help to set Background

2011-12-13 Thread Kiran Kumar Kendole
I gone through the two solutions. neither helped me . Can anybody please help me. My code is... *ArrayAdapter adapter = new ArrayAdapter(this,* * android.R.layout.simple_list_item_multiple_choice, values);* * setListAdapter(adapter);* * ListView list=getListView();* *list.setChoiceMode(List

Re: [android-developers] Help to set Background

2011-12-13 Thread skink
akash jain wrote: > for this you can use ArrayAdapter with 2 argument..first the context > and another is layoutnow to get the values from database...and add that > value to adapter...e.g > adapter.add(..); > its working.. don't do that, use http://developer.android.com/

Re: [android-developers] Help to set Background

2011-12-13 Thread akash jain
for this you can use ArrayAdapter with 2 argument..first the context and another is layoutnow to get the values from database...and add that value to adapter...e.g adapter.add(..); its working.. -- You received this message because you are subscribed to the Google Groups "

[android-developers] Help to set Background

2011-12-13 Thread Kiran Kumar Kendole
Hey All , I am back with another doubt. Could you please help me in the following.. I have data in SQlite.. and I am able to show it using a ListView ... For this I used the below code. * * *ArrayAdapter adapter = new ArrayAdapter(this,* * android.R.layout.simple_list_item_multiple_choice, values