单击按钮时,我想删除我在登录活动中存储的数据。我必须从不同的活动中删除它,我们如何才能删除它。
这就是我保存值的方式。
public void saveInformation(String username, String password) {
SharedPreferences shared = getSharedPreferences("SelfTrip", MODE_PRIVATE);
SharedPreferences.Editor editor = shared.edit();
editor.putString("username", username);
editor.putString("password", password);
editor.commit();
}