如何在关闭应用程序后保存Button的isEnabled()状态(布尔值)并再次加载? 我尝试过SharedPreferences和InternalStorage,但我真的不知道/理解如何使用它。
答案 0 :(得分:0)
SharedPreferences prefs = this.getSharedPreferences(
"com.example.app", Context.MODE_PRIVATE);
//To read preferences:
boolean isEna = prefs.getBoolean("key", false);
//To edit and save preferences
boolean isEnable = true;
prefs.edit().putBoolean("key",isEnable).commit();