在Kotlin中保存SharedPreferences时,请按照以下步骤操作:
val sharedPreferences = context.getSharedPreferences("file_name", Context.MODE_PRIVATE)
val editor = sharedPreferences.edit() editor.putString("key", "value") editor.apply()
val value = sharedPreferences.getString("key", defaultValue)
请确保将“file_name”替换为你想要使用的文件名,并将“key”替换为你用作键的实际字符串。另外,确保使用正确的默认值。
以下是完整的示例:
val sharedPreferences = context.getSharedPreferences("myPrefs", Context.MODE_PRIVATE) val editor = sharedPreferences.edit() editor.putString("name", "John") editor.putInt("age", 30) editor.putBoolean("isMarried", true) editor.apply()
val name = sharedPreferences.getString("name", "") val age = sharedPreferences.getInt("age", 0) val isMarried = sharedPreferences.getBoolean("isMarried", false)
注意,在检索值时,如果该键不存在,则始终使用默认值。