我正在试用 google IO 2018 会议中介绍的导航架构组件。我正在尝试制作一个包含三个选项卡的应用程序,每个选项卡一个片段。在其中一个中,我想使用 Google Maps API 放置地图。通常您应该在 Activity 的 OnCreate 中执行此操作
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
R.id.map is
SupportMapFragment
内部的idmain_activity.xml
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" />
然而,导航架构组件设置略有不同。
main_activity.xml
仅包含一个NavHostFragment
(加载每个屏幕的片段的位置)和一个BottomNavigationView
在应用程序的不同目的地之间移动的。
<RelativeLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<fragment
android:id="@+id/my_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
app:navGraph="@navigation/nav_graph"
app:defaultNavHost="true"
android:layout_height="match_parent"
android:layout_width="match_parent" >
</fragment>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@android:color/white"
android:layout_alignParentBottom="true"
app:itemTextColor="@android:color/white"
app:menu="@menu/bottom_navigation_main" />
</RelativeLayout>
我的导航图看起来像这样
<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"
app:startDestination="@id/map">
<fragment
android:id="@+id/endFragment"
android:name="douglas.leone.easytaxi.EndFragment"
android:label="fragment_end"
tools:layout="@layout/fragment_end" />
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" />
<fragment
android:id="@+id/startFragment"
android:name="douglas.leone.easytaxi.StartFragment"
android:label="fragment_start"
tools:layout="@layout/fragment_start" />
</navigation>
如您所见,第一个和第三个选项卡有两个startFragment
片段endFragment
。在第二个中SupportMapFragment
,我试图参考。我不能使用标准getSupportFragmentManager().findFragmentById(int id)
方式,因为main_activity.xml
只包含一个NavHostFragment
我尝试尝试getChildFragmentManager()
但没有太大成功。我也试过navController.getCurrentDestination()
,但它返回一个NavDestination
我不能用来检索加载的片段的对象。
我发现的唯一解决方案是SupportMapFragment
直接添加,activity_main.xml
使其与导航图完全分开,但这比解决方案更像是一种解决方法,因为当用户位于另一个屏幕时,我必须手动处理显示和隐藏地图。
如果有人知道正确的解决方案,请分享。