保存并加载布尔状态

时间:2013-05-28 15:12:33

标签: android button save boolean sharedpreferences

如何在关闭应用程序后保存Button的isEnabled()状态(布尔值)并再次加载? 我尝试过SharedPreferences和InternalStorage,但我真的不知道/理解如何使用它。

1 个答案:

答案 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();