我正在尝试通过编写一个简短程序将Preferences
存储在密钥ted
中,然后在board
中加载值来了解boardstr
的工作原理。
当我使用getString
加载值时,boardstr
的值不会更改。
boardstr= new String();
boardstr="fred";
// set the prefrence to ted
this.getPreferences(MODE_PRIVATE).edit().putString("board","ted");
// kload the prfrence in boardstr
this.getPreferences(MODE_PRIVATE).getString("board",boardstr);
// boardstr stil equals fred, not ted