Default bindPreferenceSummaryToValue crashes for non-string types

前端 未结 2 1541
后悔当初
后悔当初 2021-02-13 13:26

I\'m following the example method to add a compatible preference/ fragment dialog found here. When doing so, I have found that if I have preferences that are Integers, Boolean,

2条回答
  •  耶瑟儿~
    2021-02-13 14:28

    private static void bindPreferenceSummaryToValue(Preference preference) {
    //Todo
    }
    

    this method is used for showing the current value of your preference, e.g If you'r using which has value as true or false it will display that value in summary. You do not need to show boolean values as summary. This method is used for or where you would like to see current value. Summary in this case is string but for it's boolean. Either you can ignore these boolean summary or can using the instanceof you can avoid exception.

提交回复
热议问题