Reputation: 2315
I know there are checkBoxPreference, ListPreference and EditTextPreference controls in PreferenceScreen.
Is there a slider control in PreferenceScreen which I can set max value and min value ,and select any value between max and min value?
Upvotes: 0
Views: 2905
Reputation: 701
You can use Aniqroid to use seek bar in Preference activity.
SeekBarPreference Documentation and Listener.
Upvotes: 2
Reputation: 2293
You might find this useful. Your basically extending CheckBoxPreference, ListPreference, and EditTextPreference through XML instead of Java (the extends
keyword).
Upvotes: 1