我尝试通过 findViewById(int) 在我的 java 文件中引用 TextView,但即使在使用正确的布局文件调用 setContentView(int) 之后,这似乎也返回 null。
帮助.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>
帮助.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);
}
}
提前致谢。