When are SharedPreferences deleted?

后端 未结 3 1015
借酒劲吻你
借酒劲吻你 2021-01-11 18:06

SharedPreferences class allows to save application data in simple type (boolean, String, etc.) formats.

Normally they are not removed and they are supposed to persi

3条回答
  •  礼貌的吻别
    2021-01-11 18:09

    1. Sharedpreferences will clear when you clear application data from Application manager by force.

    2. If you want to clear your application Sharepreference data, then you can use:

      PreferenceManager.getDefaultSharedPreferences(context).edit().clear().commit();
      

提交回复
热议问题