Is it possible to define a RadioGroup in a PreferenceActivity? I could only find the ListView when offering multiple-choices.
Am I missing something?
Is it possible to define a RadioGroup in a PreferenceActivity?
You are welcome to create your own DialogPreference
subclass that happens to host a RadioGroup
, but it is unclear what benefit that would give you over a ListPreference
.
I could only find the ListView when offering multiple-choices.
A ListPreference
offers single choices, not multiple choices. There is a new MultiSelectListPreference
for multiple choices, but that only showed up in API Level 11.