public class home extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_home); BottomNavigationView navView = findViewById(R.id.nav_view); // Passing each menu ID as a set of Ids because each // menu should be considered as top level destinations. AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder( R.id.navigation_home, R.id.navigation_dashboard, R.id.navigation_notifications) .build(); NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment); NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration); NavigationUI.setupWithNavController(navView, navController); } }
时间: 2024-02-14 17:23:05 浏览: 121
Android 与 Vue.js 的结合
这是一个使用了 Android Jetpack Navigation 组件的示例代码,其中包括了 BottomNavigationView 和 NavController 的使用。BottomNavigationView 是一个底部导航栏,可以用于切换不同的页面,而 NavController 则是一个用于管理页面切换的组件。在这段代码中,通过传入不同的 menu ID,将不同的页面视为顶级目标,并使用 AppBarConfiguration 对象进行配置。接着,通过 NavigationUI 工具类对 ActionBar 和 BottomNavigationView 进行设置,使其与 NavController 相关联。这样,当用户点击不同的 BottomNavigationView 菜单项时,NavController 会自动帮助用户切换到相应的页面。
阅读全文