gpt4 book ai didi

android - findViewById 在调用 setContentView 后返回 null

转载 作者:太空宇宙 更新时间:2023-11-03 12:59:23 27 4
gpt4 key购买 nike

我尝试通过 findViewById(int) 在我的 java 文件中引用一个 TextView,但即使在使用正确的布局文件调用 setContentView(int) 之后,这似乎也返回 null。

Help.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/tvBoxHelp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/help"
android:layout_gravity="center"
android:textSize="20sp" />

</LinearLayout>

Help.java

 public class Help extends Activity {

private TextView tv;

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
setContentView(R.layout.help);
tv = (TextView) findViewById(R.id.tvBoxHelp);
tv.setText("text");
super.onCreate(savedInstanceState);
}
}

提前致谢。

最佳答案

您的 super.onCreate(savedInstanceState); 位置导致了问题。

用这个替换你的 Help.java

public class Help extends Activity {

private TextView tv;

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.help);

tv = (TextView) findViewById(R.id.tvBoxHelp);
tv.setText("text");

}
}

关于android - findViewById 在调用 setContentView 后返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14028648/

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