我不知道我做得对不对。我在androidstudio中使用了一个导航抽屉模板,并成功地浏览了3个菜单选项。我所做的是为我添加的所有菜单,否则下一个片段将显示什么。我觉得这种方法有点难,特别是我需要增加更多的菜单。
是导航碎片的更好方法。提前谢谢。
主活动.java
@Override
public boolean onNavigationItemSelected(MenuItem item) {
String title = getSupportActionBar().getTitle().toString();
switch (item.getItemId()) {
case R.id.nav_home:
if(title.equals(getString(R.string.title_status))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_status_to_home_fragment);
} else if(title.equals(getString(R.string.title_gallery))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_galley_to_home_fragment);
}
break;
case R.id.nav_status:
if(title.equals(getString(R.string.title_home))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_home_to_status_fragment);
} else if(title.equals(getString(R.string.title_gallery))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_galley_to_status_fragment);
}
break;
case R.id.nav_gallery:
if(title.equals(getString(R.string.title_home))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_home_to_gallery_fragment);
} else if(title.equals(getString(R.string.title_status))) {
Navigation.findNavController(this, R.id.nav_host_fragment).navigate(R.id.action_status_to_gallery_fragment);
}
break;
}
item.setChecked(true);
drawer.closeDrawers();
return true;
}
移动导航.xml
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mobile_navigation"
app:startDestination="@+id/nav_home">
<fragment
android:id="@+id/nav_home"
android:name="com.ddc.qvac.framents.HomeFragment"
android:label="@string/title_home"
tools:layout="@layout/fragment_home">
<action
android:id="@+id/action_home_to_status_fragment"
app:destination="@id/nav_status" />
<action
android:id="@+id/action_home_to_gallery_fragment"
app:destination="@id/nav_gallery" />
</fragment>
<fragment
android:id="@+id/nav_gallery"
android:name="com.ddc.qvac.framents.gallery.GalleryFragment"
android:label="@string/title_gallery"
tools:layout="@layout/fragment_gallery">
<action
android:id="@+id/action_galley_to_home_fragment"
app:destination="@id/nav_home" />
<action
android:id="@+id/action_galley_to_status_fragment"
app:destination="@id/nav_status" />
</fragment>
<fragment
android:id="@+id/nav_status"
android:name="com.ddc.qvac.framents.StatusFragment"
android:label="@string/title_status"
tools:layout="@layout/fragment_status">
<action
android:id="@+id/action_status_to_home_fragment"
app:destination="@id/nav_home" />
<action
android:id="@+id/action_status_to_gallery_fragment"
app:destination="@id/nav_gallery" />
</fragment>
</navigation>
1条答案
按热度按时间7ivaypg91#
将相同的id用于:
id
在导航xml文件的片段标记中定义的id
在菜单xml文件中定义的在你的
mobile_navigation.xml
您正在使用的文件"@+id/nav_home"
家庭碎片。在menu.xml文件中,将主菜单的id设置为"@+id/nav_home"
如果菜单文件和导航文件中的两个ID相同,它将自动导航到片段。我们不需要做任何样板代码。