private void showAllUserData() {
Intent validation = getActivity().getIntent();
String user_username = validation.getStringExtra("username");
String user_email = validation.getStringExtra("email");
String user_password = validation.getStringExtra("password");
String user_name = validation.getStringExtra("name");
fullNameLabel.setText(user_name);
userNameLabel.setText(user_username);
fullname.getEditText().setText.toString(user_name);
email.getEditText().setText.toString(user_email);
password.getEditText().setText.toString(user_password);
}}
我的get all user data方法在这里有一个问题,在edit text to string部分,我不知道如何在片段中使用它。
下面是我的代码在androidstudio中的样子
1条答案
按热度按时间55ooxyrt1#
下次请把你的代码以文本而不是图片的形式发布。这篇文章包含关于如何在stackoverflow上提出一个好问题的信息。
是
full_name_profile
,email_profile
以及password_profile
在xml布局中编辑文本?因为在这种情况下,变量fullname
,email
以及password
已经在编辑文本,你可以删除getEditText()
并将文本设置为:fullname.setText(user_username)