Android preferences summary default color?

前端 未结 6 975
梦谈多话
梦谈多话 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 02:44

    Preference pUpdate = findPreference("sys_setting_update");
    pUpdate.setSummary(Html.fromHtml("This is content"));
    

    use Html.fromHtml("This is content") to setSummary

提交回复
热议问题