gpt4 book ai didi

java - TextView.setText()使我的应用程序在HTC One和Bluestacks上崩溃

转载 作者:行者123 更新时间:2023-12-03 17:29:22 25 4
gpt4 key购买 nike

已经以各种形式提出了这个问题,但是没有一个适用于我。

每当我使用setText方法时,我的应用程序都会崩溃,无论传入或传递给它的参数如何,这三件事都会在我的所有三台计算机上发生,并且根本找不到任何解决方案。

请看下面的代码,(这很简单,我实际上是在做Java和android开发入门 class )

我对此表示感谢

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


//these are just examples to show the error
int num1 = 30;
int num2 = 50;
int total = (num1 + num2)/2;

TextView show = (TextView) findViewById (R.id.txtShow);
show.setText(String.valueOf(total));


if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();

}
}

最佳答案

去掉

if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();

}

关于java - TextView.setText()使我的应用程序在HTC One和Bluestacks上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24885731/

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