我有一個需要從第二個活動更新的TextView活動。 我可以將文本視圖數據傳遞給第二個活動,但是當我嘗試在第二個活動內更新該TextView 時,它會崩潰。我的代碼:無法從其他活動更新TextView
1日活動(其中TextView的是我的XML定義):
Intent intent = new Intent(1stactivity.this, 2ndactivity.class);
intent.putExtra("homescore_value", ((TextView)findViewById(R.id.score_home)).getText());
startActivity(intent);
// code snippet
然後在我的第二個活動:
Bundle bundle = getIntent().getExtras();
hometext = bundle.getString("homescore_value"); // this works and displays the correct String from 1st activity,
但是當我嘗試拉進來,因爲它崩潰a TextView
:
// other code snipped
int homescore = 0;
String Home_nickname = "HOME ";
TextView homestext = (TextView) bundle.get("homescore_value");
hometext.setText(Home_nickname +": "+homescore );
請大家幫忙。
請粘貼LogCat異常 – Sarmad