I found this very useful site: http://android-journey.blogspot.de/2010/01/for-almost-any-application-we-need-to.html
It shows a custom seekbar preference implementation. My Problem is, that I have several listpreference items in my preferencescreen, and I also like to implement a seekbar pref. To do this, I have to extend the Preference class and provide a Layout which will be used in the listview of preferencescreen.
The problem is, the standard listpreferences have all the same layout height, and my seekbar pref has another height...but I'd like to have all prefs the same size (height) in the preferencescreen on different android versions (2.2 - 4.2). Also the text size and color differs a little.
Is there a way to get the standard android PreferenceActivity layout property values or any other solution for this?