I have installed my app in a real phone, and even though in the emulator all the texts of the preferences summaries seem to be in the same color, in the real phone the color
I had the same problem and I've been experimenting with my custom seekbar-preference's style. Finally these lines in onCreateView
method of seekBarPreference.java
show preference's summary with default text color:
TextView summaryText = new TextView(getContext());
summaryText.setText(getSummary());
summaryText.setTextAppearance(getContext(), android.R.style.TextAppearance_Small);
I use it on preference_screen.xml
:
I hope it will be useful...(and that I have written well my first answer) Regard!