Android SeekBarPreference

后端 未结 3 949
独厮守ぢ
独厮守ぢ 2020-12-06 18:49

I\'m currently trying to implement SeekBarPreference class using http://android-journey.blogspot.com/2010/01/for-almost-any-application-we-need-to.html tutorial with Relativ

3条回答
  •  庸人自扰
    2020-12-06 19:29

    The problem with sliding here is due to notifyChange() call. That is interfering with the sliding somehow. I am also working on similar widget because I do not like the Dialog approach.

    As promised here is the solution that I added to my open source project:

    I have written a SeekBarPreference class that is embeded widget inside the preferences activity instead of popup dialog. You can download the jar file from:

    http://aniqroid.sileria.com/

    The class documentation and usage is here: http://aniqroid.sileria.com/doc/api/com/sileria/android/view/SeekBarPreference.html

    Also do not forget to checkout the handy companion class to auto show a summary when you change the SeekBar: http://aniqroid.sileria.com/doc/api/com/sileria/android/event/PrefsSeekBarListener.html

提交回复
热议问题