I am making an app from the example of Android Developers with the Navigation Drawer. I made the items but I don\'t know how I can open new Activity from each of items enlis
In manifest you write this code:
In Main activity:
Intent i=new Intent(MainActivity.this,firstactivity.class); startActivity(i);