HelloCW
HelloCW

Reputation: 2315

How to set a slider in PreferenceScreen of Android?

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

Answers (2)

Jitender Chaudhary
Jitender Chaudhary

Reputation: 701

You can use Aniqroid to use seek bar in Preference activity.

SeekBarPreference Documentation and Listener.

Upvotes: 2

Andrew Quebe
Andrew Quebe

Reputation: 2293

You might find this useful. Your basically extending CheckBoxPreference, ListPreference, and EditTextPreference through XML instead of Java (the extends keyword).

Upvotes: 1

Related Questions