Android SharedPreferences 是一种用于存储和检索轻量级、键值对格式的数据的存储方式。它被广泛应用于保存应用的配置信息、用户设置等。以下是如何在 Android 应用中使用 SharedPreferences 的步骤:
SharedPreferences sharedPreferences = getSharedPreferences("app_settings", MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("example_key", "example_value");
editor.commit(); // 或者使用 apply() 方法
String exampleValue = sharedPreferences.getString("example_key", "default_value");
sharedPreferences.remove("example_key");
sharedPreferences.clear();
注意:SharedPreferences 是同步的,因此在主线程中执行读写操作是安全的。但是,在大量读写操作的情况下,可能会影响性能。在这种情况下,可以考虑使用其他存储方式,如 SQLite 数据库或文件存储。