Re: [android-developers] Re: List with seperators, checkboxes...

2011-10-14 Thread TreKing
On Fri, Oct 14, 2011 at 2:39 AM, BearTi wrote: > One last question: When I store/set for example a boolean value to my > "sharedprefences" object checkbox1... > Ist this value stored until I deinstall this app? > Yes. -

[android-developers] Re: List with seperators, checkboxes...

2011-10-14 Thread BearTi
Ok, thats what I wanted... It works perfect... One last question: When I store/set for example a boolean value to my "sharedprefences" object checkbox1... Ist this value stored until I deinstall this app? On 12 Okt., 17:44, TreKing wrote: > On Wed, Oct 12, 2011 at 10:37 AM, BearTi wrote: > > W

[android-developers] Re: List with seperators, checkboxes...

2011-10-12 Thread BearTi
Ah, okay... :) Thanks! On 12 Okt., 17:44, TreKing wrote: > On Wed, Oct 12, 2011 at 10:37 AM, BearTi wrote: > > Whith which adapter or listview can I do this? > > That is a PreferenceScreen. > > - > Tre

Re: [android-developers] Re: List with seperators, checkboxes...

2011-10-12 Thread TreKing
On Wed, Oct 12, 2011 at 10:37 AM, BearTi wrote: > Whith which adapter or listview can I do this? That is a PreferenceScreen. - TreKing - Chicago

[android-developers] Re: List with seperators, checkboxes...

2011-10-12 Thread BearTi
Thanks. I found this exmaple: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ExpandableList1.html What I want is something like this: http://androidpartaker.files.wordpress.com/2010/07/android_preferences_1.jpg Whith which adapter or listview can I do th

[android-developers] Re: List with seperators, checkboxes...

2011-10-11 Thread Studio LFP
Your description is a bit vague, but maybe check out the ExpandableListView here: http://developer.android.com/reference/android/widget/ExpandableListView.html It's a ListView with expandable sections. To get checkboxes, you'll need to create a layout or extend a view to make it like you want.