此代码用于在SharedPreference中创建值。
SharedPreferences sharedpreferences;
sharedpreferences = getSharedPreferences("user", Context.MODE_PRIVATE);
Editor editor = sharedpreferences.edit();
editor.putInt("ans1",1).commit();
以下是从SharedPreference获取值的代码。
SharedPreferences sharedpreferences=getApplicationContext().getSharedPreferences("user", Activity.MODE_PRIVATE);
int ans = sharedpreferences.getInt("ans1",7);
ans的值总是7。