以下是我的代码,请求用户输入用户名:
private void request_user_name() {
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Enter name:");
final EditText input_field = new EditText(this);
input_field.setText(sharedpreferences.getString("username",""));
final SharedPreferences.Editor editor = sharedpreferences.edit();
builder.setCancelable(false);
builder.setView(input_field);
final String savedName = sharedpreferences.getString(username,"");
input_field.setText(savedName);
input_field.setSelection(input_field.getText().length());
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
name = input_field.getText().toString();
if(TextUtils.isEmpty(savedName)) {
input_field.setError("Your message");
builder.setCancelable(false);
}
editor.putString(username, name);
editor.apply();
}
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
if(TextUtils.isEmpty(savedName)) {
input_field.setError("Your message");
builder.setCancelable(false);
}
else
{
dialogInterface.cancel();
request_user_name();
}
}
});
builder.show();
}
这就是我将用户名传递给下一个Activity的方式:
intent.putExtra("room_name",((TextView)view).getText().toString() );
intent.putExtra("user_name",name);
intent.putExtra("default_name","anyonymous");
startActivity(intent);
这就是我在下一个活动中收到Intent Extra的方式:
if (getIntent().getExtras() != null
&& getIntent().getExtras().get("user_name")!=null) {
user_name = getIntent().getExtras().get("user_name").toString();
}else{
user_name = getIntent().getExtras().get("default_name").toString();
}
我的问题是当用户没有输入他的名字并且它返回null然后它返回anyonymous
但是当用户输入他的名字然后它将用户名传递给下一个活动。但是,当我重新启动应用程序时,它再次将anyonymous
传递给下一个活动而不是用户已经输入的用户
所以我需要建议如何在共享的首选项中保存输入的用户名,并在将来启动应用时使用相同的内容,除非未输入新名称而不是anyonymous
提前致谢。
答案 0 :(得分:0)
如果您已使用SharedPreferences
存储user_name,则无需通过user_name
传递Intent
。 SharedPreferences
是全局的,可以在整个应用程序中访问。只是做:
sharedpreferences.getString("username","anonymous")
在目标活动中。