Android preferences summary default color?

前端 未结 6 927
梦谈多话
梦谈多话 2021-01-03 02:30

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

6条回答
  •  离开以前
    2021-01-03 03:05

    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!

提交回复
热议问题