When are SharedPreferences deleted?

后端 未结 3 1017
借酒劲吻你
借酒劲吻你 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:14

    when you do clear data from the device applications manager or when you uninstall your application, the SharedPreference's file is deleted.

    SharePreferences are stored inside

    /data/data/packagename/shared_prefs/prefsname.xml
    

    unless you have the android:allowBackup="true" in your manifest. In that case they might be restored.

提交回复
热议问题