我正在嘗試更改單擊按鈕上的textview文本。下面是我的代碼的要點,但它似乎並沒有工作。難道我做錯了什麼。在此先感謝在點擊按鈕時更改TextView文本(Android)
//xml
<TextView android:id="@+id/textView2" android:text="blah blah blah"></TextView>
<Button android:text="Wrong answer." android:onClick="wrongAns" android:clickable="true"></Button>
//code
TextView theCorrectAnsTextView = (TextView)findViewById(R.id.textView2);
public void wrongAns(View v)
{
theCorrectAnsTextView.setText("TextView text has changed!");
}
當您單擊按鈕發生了什麼事? –
從哪裏調用'wrongAns(View v)'函數?請提供更多細節。 – Shafi
公用類applicationName extends Activity之外的應用程序崩潰 – drdrdr