如何从Android的内置导航抽屉中打开Activity

问题描述 投票:1回答:1

我已经看到很多人遇到相同的问题,但是当我尝试他们的解决方案时,从导航抽屉中打开活动仍然无法正常工作。

我的MainActivity的代码

public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener {

//region Properties
private AppBarConfiguration mAppBarConfiguration;
ImageButton settings_btn;
//endregion

@Override
protected void onStart() {
    super.onStart();
    ProductDatabase productDb = new ProductDatabase();
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    settings_btn = findViewById(R.id.btn_settings);
    settings_btn.setOnClickListener(v ->
            startActivity(new Intent(MainActivity.this, SettingsActivity.class)));

    FloatingActionButton fab = findViewById(R.id.fab);
    fab.setOnClickListener(view -> Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
            .setAction("Action", null).show());

    DrawerLayout drawer = findViewById(R.id.drawer_layout);
    NavigationView navigationView = findViewById(R.id.nav_view);
    // Passing each menu ID as a set of Ids because each
    // menu should be considered as top level destinations.
    mAppBarConfiguration = new AppBarConfiguration.Builder(
            R.id.nav_home, R.id.nav_login, R.id.nav_treatments, R.id.nav_product, R.id.nav_about, R.id.nav_contactUs)
            .setDrawerLayout(drawer)
            .build();
    NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
    NavigationUI.setupActionBarWithNavController(this, navController, mAppBarConfiguration);
    NavigationUI.setupWithNavController(navigationView, navController);
}

@Override
public boolean onSupportNavigateUp() {
    NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
    return NavigationUI.navigateUp(navController, mAppBarConfiguration)
            || super.onSupportNavigateUp();
}

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

@Override
public boolean onNavigationItemSelected(MenuItem item) {
    int id = item.getItemId();

    if (id == R.id.nav_booking) {
        startActivity(new Intent(this, BookingActivity.class));
    } else if (id == R.id.nav_home) {

    } else if (id == R.id.nav_product) {

    } else if (id == R.id.nav_treatments) {

    } else if (id == R.id.nav_about) {

    } else if (id == R.id.nav_contactUs) {

    }

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

当我运行此代码并单击“预订”标签时。什么都没发生。预订以前是一个片段,但现在我只希望它打开一个活动,而所有其他选项都可以打开片段。在此先感谢

java android android-activity navigation-drawer
1个回答
2
投票
navigationView.setNavigationItemSelectedListener(this)

我在您的代码中没有看到这一行代码。显然您没有设置监听器

© www.soinside.com 2019 - 2024. All rights reserved.