如何在应用程序启动时更改文本字段,如何在单击按钮时再次更改文本字段?
MainActivity.java
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView myText=(TextView)findViewById(R.id.myActivityTextView);
myText.setText("Launch Text Change");
}
public void myButtonclicked(View v){
TextView myText=(TextView)findViewById(R.id.myActivityTextView);
myText.setText("Button Change Text");
}
activity_main.xml中
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myText" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Change Text"
android:id="@+id/myButton"
android:layout_below="@+id/myText"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:onClick="myButtonclicked"/>
答案 0 :(得分:2)
xml中的TextView
ID为myText
。更改
TextView myText=(TextView)findViewById(R.id.myActivityTextView);
到
TextView myText=(TextView)findViewById(R.id.myText);
它应该有用。
答案 1 :(得分:1)
您正在寻找错误的ID。这是正确的方法
TextView myText=(TextView)findViewById(R.id.myText);
myText.setText("Launch Text Change");