What's wrong with the following code?
I'm trying to use onResume
method but it's crashing.
The IDs in the XML are correct.
public class MainActivity extends ActionBarActivity {
TextView ford = (TextView) findViewById(R.id.krux);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onResume() {
super.onResume();
ford.setText("camphor");
}
}