我无法使用editText中的用户在android
中的相同活动中输入值输入答案 0 :(得分:0)
创建editText变量,例如
EditText e1;
TextView t1;
在onCreate方法中
e1 = (EditText) findViewById(R.id.editText1);
t1 = (TextView) findViewById(R.id.textView1);
t1.setText(e1.getText().toString());
此处editText1和textView1是您将在xml文件中指定的ID。 所以通常你从EditText中获取值并在TextView中显示它 你做完了