I try to reference a TextView in my java file through findViewById(int), but this seems to return null even after calling setContentView(int) with the correct layout file.
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); } } Thanks in advance.
super.onCreate(savedInstanceState)should be called directly afteronCreate()