У меня есть действие с TextView, которое необходимо обновить после второго действия.Я могу передать данные текстового представления во 2-е действие, но когда я пытаюсь обновить это TextView во 2-м действии, происходит сбой.Мой код:
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
Затем в моем 2-м действии:
Bundle bundle = getIntent().getExtras();
hometext = bundle.getString("homescore_value"); // this works and displays the correct String from 1st activity,
, но происходит сбой, когдаЯ пытаюсь выдвинуть как TextView
:
// other code snipped
int homescore = 0;
String Home_nickname = "HOME ";
TextView homestext = (TextView) bundle.get("homescore_value");
hometext.setText(Home_nickname +": "+homescore );
Пожалуйста, помогите.