android SharedFerence使用

来源:互联网 发布:铃声合并软件 编辑:程序博客网 时间:2024/06/06 05:01

写入数据

     SharedPreferences store = getSharedPreferences("storexml", 0);
     SharedPreferences.Editor editor = store.edit();
     editor.putString("test", text.getText().toString());
     editor.commit();

 

 

读取数据

        SharedPreferences store = getSharedPreferences("storexml", 0);
        str = store.getString("test", "");
        text.setText(str);