如何删除我的应用程序的 SharedPreferences 数据?
我正在创建一个使用大量 Web 服务来同步数据的应用程序。出于测试目的,我需要在重新启动应用程序时清除一些 SharedPreferences 值。
要删除特定值:SharedPreferences.Editor.remove()后跟commit()
commit()
将它们全部删除,SharedPreferences.Editor.clear()然后是commit()
SharedPreferences.Editor.clear()
如果您不关心返回值并且您在应用程序的主线程中使用它,请考虑apply()改用。
apply()