私の Main クラスには、次のコードがあります。
public class Main extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Show s = new Show();
}
}
私のショークラスには、このコードがあります
public class Show extends Activity {
protected ListView showme = null;
public Show() {
showme = (ListView) findViewById(R.id.mylw);
}
}
このコードを実行すると、次のエラーが発生します。
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.ahah/com.example.ahah.Main}: java.lang.NullPointerException