キーに格納してから値をロード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