简体   繁体   English

如何从项目单击NavDrawer中启动新活动

[英]How to start a new activity from item click in NavDrawer

I'm a novice. 我是新手。 I was just wondering how to start a new (pre-defined) activity from clicking one of the option items inside a navigation drawer? 我只是想知道如何通过单击导航抽屉中的一个选项项来启动新的(预定义)活动? I have just completed a tutorial on how to make the NavDrawer. 我刚刚完成了有关如何制作NavDrawer的教程。 Here is what I have so far in my main activity (it's called IntroActivity ) 这是我到目前为止的主要活动(称为IntroActivity

IntroActivity.java: IntroActivity.java:

public class IntroActivity extends Activity {

private String[] drawerListViewItems;
private ListView drawerListView;
private DrawerLayout drawerLayout;
private ActionBarDrawerToggle actionBarDrawerToggle;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_intro);

    //Retrieve List items from strings.xml
    drawerListViewItems = getResources().getStringArray(R.array.list_items);

    //Retrieve ListView defined in intro_activity.xml
    drawerListView = (ListView) findViewById(R.id.left_drawer);

    //Set the adapter for the list view
    drawerListView.setAdapter(new ArrayAdapter<String>(this, R.layout.drawer_listview_item, drawerListViewItems));

    //App Icon
    drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);

    actionBarDrawerToggle = new ActionBarDrawerToggle(
            this, /* Host Activity */
            drawerLayout, /* DrawerLayout object */
            R.drawable.ic_drawer, /* Image to replace "up" image*/
            R.string.drawer_open, /* Open drawer description*/
            R.string.drawer_close /* Close drawer description*/
            );

    //Set actionBarDrawerToggle as the DrawerListener
    drawerLayout.setDrawerListener(actionBarDrawerToggle);

    getActionBar().setDisplayHomeAsUpEnabled(true);

    //ADD SHADOW TO THE RIGHT EDGE OF DRAWER
    drawerLayout.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.START);

    //Responding to clicks implementation:
    drawerListView.setOnItemClickListener(new DrawerItemClickListener());
}

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    //Sync the toggle state after onRestart... has occurred
    actionBarDrawerToggle.syncState();
}

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    actionBarDrawerToggle.onConfigurationChanged(newConfig);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.intro, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    //Call ActionBarDrawerToggle.onOptionsItemSelected(),
            //If it returns true, then it has handles the app icon touch event
            if (actionBarDrawerToggle.onOptionsItemSelected(item)) {
                return true;
            }

            return super.onOptionsItemSelected(item);
}

private class DrawerItemClickListener implements ListView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView parent, View view, int position,
            long id) {
        //I WOULD LIKE TO REPLACE THE FOLLOWING CODE WITH SOMETHING 
        //THAT CAN START A NEW ACTIVITY
        /*Toast.makeText(IntroActivity.this, ((TextView)view).getText(), 
                Toast.LENGTH_LONG).show(); */

        drawerLayout.closeDrawer(drawerListView);
    }
}

}

Thanks if you can help. 谢谢您的帮助。

Use this 用这个

Intent intent = new Intent(IntroActivity.this, YourNewActivity.class);
            startActivity(intent);

where YourNewActivity is the activity you want to start YourNewActivity是您要开始的活动

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM