我的应用程序需要添加用户名才能正常运行。mainActivity 在顶部显示它从数据库中检索的用户名。mainActivity 也有一个按钮,通过 startActivityForResult() 方法导致“addusername”活动;当用户实际输入用户名时,只有主活动上的用户名会被刷新和显示。“addusername”活动上有一个提交按钮,它添加用户名,setResult(RESULT_OK);
如果通过单击“addusername”按钮输入用户名,一切正常。
现在,我在 mainActivity 中添加了一个对话框,仅当数据库中不存在用户名时才会在应用程序启动时显示该对话框。对话框提供了添加用户名的选项,如果单击该选项,将导致“添加用户名”活动。但是在按下“提交”按钮后,mainActivity 确实被调用了,但用户名没有被刷新(虽然,数据库确实被更新了)
这是“addusername”活动的代码:
public void submitusername(View view) {
userdatabase name = new userdatabase(this);
name.open();
String user = name.getusername();
name.close();
EditText cinone = (EditText) findViewById(R.id.username);
username = cinone.getText().toString();
if(user.equals("")) {
userdatabase entry = new userdatabase(Editprofile.this);
entry.open();
entry.createEntry(username, null, null, null);
entry.close();
Context context = getApplicationContext();
CharSequence text = "Added new user!";
int duration = Toast.LENGTH_LONG;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
else {
userdatabase update = new userdatabase(Editprofile.this);
update.open();
update.updateUsername(username);
update.close();
Context context = getApplicationContext();
CharSequence text = "Username updated!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
}
setResult(RESULT_OK);
finish();
}
这是对话框的代码:
public class NouserFragment extends DialogFragment {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the Builder class for convenient dialog construction
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setMessage(R.string.nouseralert)
.setPositiveButton(R.string.add, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Intent intent = new Intent(getActivity().getBaseContext(), Editprofile.class);
startActivity(intent);
}
})
.setNegativeButton(R.string.ignore, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// User cancelled the dialog
}
});
// Create the AlertDialog object and return it
return builder.create();
}
}
我知道这是因为 Dialog 没有调用 startActivityForResult() 方法。但即使我改变我的代码,像这样:
Intent intent = new Intent(getActivity().getBaseContext(), Editprofile.class);
startActivityForResult(intent, 0);
它仍然没有帮助。可能是因为 onActivityResult() 方法不在调用 startActivityForResult() 的同一个类中,但我不知道如何获得。
编辑1:尝试使用
Intent intent = new Intent(getActivity(), Editprofile.class);
startActivityForResult(intent, 0);
没用。