I\'ve followed this tutorial but when I try to run the application I get Unfortunately HelloListView has stopped The IDE gives no warnings or errors.
Unfortunately HelloListView has stopped
My Hel
You have to add setContentView(R.layout.yourlayout) after the super.onCreate(savedInstanceState);
setContentView(R.layout.yourlayout)
super.onCreate(savedInstanceState);
the R.layout.yourlayout should look like this ( in folder res/layout ) :
R.layout.yourlayout