我想检查 SharedPreferences 中的一个字符串,它使用它来存储用户名和密码,所以如果用户名和密码不为空或为空,它将被定向到主页,否则如果用户名和密码为空,它将被定向到登录页面。
这是我检查 SharedPreferences 字符串的代码,但它不起作用..
if(PreferenceConnector.USERNAME!=null){
Intent intent = new Intent(MainActivity.this,MainHome_Activity.class);
startActivity(intent);
} else {
Intent intent = new Intent(MainActivity.this,LoginFormPegawai_Activity.class);
startActivity(intent);
}
我尝试使用此代码通过 toast 检查它,在尝试此操作后,我得到 SharedPreferences string is not null or empty..
btn_logout_pegawai.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
//remove the SharedPreferences string
PreferenceConnector.getEditor(this).remove(PreferenceConnector.USERNAME)
.commit();
PreferenceConnector.getEditor(this).remove(PreferenceConnector.PASSWORD)
.commit();
//checking the SharedPreferences string
if(PreferenceConnector.USERNAME!=null){
Toast.makeText(MainHome_Activity.this,"not null", Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(MainHome_Activity.this,"null", Toast.LENGTH_SHORT).show();
}
}
});
如何正确检查 SharedPreferences 字符串是空的还是空的?
谢谢..