我正在尝试使用文本字段和文本视图,并将文本视图文本设置为该字段上的任何内容。
这是我的代码:
MainActivity.java
pas
activity_main.xml中:
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView helloMessage = (TextView) findViewById(R.id.hello); //define textView to show the message
EditText nameField = (EditText) findViewById(R.id.Name); // Text field to get the name from
String getName = nameField.getText().toString(); // set a variable with the text field's value
helloMessage.setText(getName); // set text on the hello textview to be the name.
}
}
提前感谢您提供任何帮助!
答案 0 :(得分:3)
兄弟你需要setContentView(R.layout.activity_main);在找到任何其他观点之前
答案 1 :(得分:0)
您忘记将setContentView(R.layout.activity_main)
添加到onCreate()