簡體   English   中英

單擊導航抽屜圖標時如何打開導航抽屜

[英]How to open Navigation Drawer when click on navigation drawer icon

單擊導航抽屜圖標時如何打開導航抽屜。

我想像這樣打開導航抽屜

![導航抽屜][1]

我添加了一個菜單但仍然沒有顯示

toggle = new ActionBarDrawerToggle(
            DashBordActivity.this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
    drawer.setDrawerListener(toggle);
    toggle.syncState();
    if (navigationView != null) {
        setupDrawerContent(navigationView);
    }


@Override
public void onBackPressed() {
    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawerLayout);
    if (drawer.isDrawerOpen(GravityCompat.START)) {
        drawer.closeDrawer(GravityCompat.START);
    } else {
        super.onBackPressed();
    }
}

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement

    return super.onOptionsItemSelected(item);
}

@SuppressWarnings("StatementWithEmptyBody")
//@Override
public boolean onNavigationItemSelected(MenuItem item) {
    // Handle navigation view item clicks here.
    int id = item.getItemId();

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawerLayout);
    drawer.closeDrawer(GravityCompat.START);
    return true;
}

public void setupToolbar(String title) {
    setSupportActionBar(toolbar);
    getSupportActionBar().setTitle(title);
    toolbar.setTitleTextColor(Color.BLACK);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}

private void setupDrawerContent(NavigationView navigationView) {
    //revision: this don't works, use setOnChildClickListener() and setOnGroupClickListener() above instead
    navigationView.setNavigationItemSelectedListener(
            new NavigationView.OnNavigationItemSelectedListener() {
                @Override
                public boolean onNavigationItemSelected(MenuItem menuItem) {
                    menuItem.setChecked(true);
                    drawer.closeDrawers();
                    return true;
                }
            });
}

當我點擊抽屜時導航抽屜沒有打開如何解決這個問題

我的代碼中是否缺少任何代碼。

  Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
       toolbar.setNavigationIcon(R.drawable.menu);
        toolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                drawer.openDrawer(START);
            }
        });

嘗試這個,

<item
        android:id="@+id/nav_camera"
        android:icon="@drawable/ic_menu_camera"
        android:title="@string/import" />

</group>

嘗試這個:

本教程非常有幫助,例如:-

  • 添加導航抽屜布局
  • 在抽屜布局中設置圖標和文本

我參考這個鏈接

https://www.androidhive.info/2013/11/android-sliding-menu-using-navigation-drawer/

試試這個很有幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM