OnItemClickListener Navigation Drawer

前端 未结 6 1742
粉色の甜心
粉色の甜心 2020-12-14 12:57

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

6条回答
  •  情话喂你
    2020-12-14 13:42

    In manifest you write this code:

    
        
    
    

    In Main activity:

    Intent i=new Intent(MainActivity.this,firstactivity.class);
    startActivity(i);
    

提交回复
热议问题