gpt4 book ai didi

android - 在恢复主要 Activity 时更新 TextView

转载 作者:行者123 更新时间:2023-11-29 16:13:59 27 4
gpt4 key购买 nike

下面提供的这段代码中的 friend 们,我想在从播放 Intent 恢复时刷新我的 TextView 。但是每当我尝试在 OnCreate 之外但在我的主类中定义我的 textview 时(在 static int 分数之后),我的应用程序崩溃。

public class MainProjectActivity extends Activity {
/** Called when the activity is first created. */

static int Score = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

//Display Scores
final TextView displayScores = (TextView)findViewById(R.id.scoreDisplay);
displayScores.setText("Your Score : "+ Score);

//Play Game button activity
Button gameButton = (Button)findViewById(R.id.PlayButton);
gameButton.setOnClickListener(new OnClickListener() {

public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent play = new Intent(getApplicationContext(), com.sample.game.PlayScreen.class);
startActivity(play);
}
});

最佳答案

我将从添加 super.onResume(); 开始:

@Override
protected void onResume(){
super.onResume();
// The rest
}

我也会删除它:

final TextView displayScores = (TextView)findViewById(R.id.scoreDisplay);
displayScores.setText("Your Score : "+ Score);

从 onCreate,并将其添加到 onResume(),因为每次调用 onCreate 时,onResume 也会被调用。

也从 public 更改为 protected onResume()

关于android - 在恢复主要 Activity 时更新 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10869817/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com