PreferenceActivity: save value as integer

前端 未结 5 704
一向
一向 2020-12-12 17:00

Using a simple EditTextPreference in my preferences activity:



        
5条回答
  •  死守一世寂寞
    2020-12-12 17:39

    I think this is the shortest one I could come up with:

    int CheckInterval = Integer.parseInt(sharedPreferences.getString("check_frequency","60"));
    

提交回复
热议问题