1

我正在试用 google IO 2018 会议中介绍的导航架构组件。我正在尝试制作一个包含三个选项卡的应用程序,每个选项卡一个片段。在其中一个中,我想使用 Google Maps API 放置地图。通常您应该在 Activity 的 OnCreate 中执行此操作

SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
        .findFragmentById(R.id.map);
mapFragment.getMapAsync(this);

R.id.map isSupportMapFragment内部的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使其与导航图完全分开,但这比解决方案更像是一种解决方法,因为当用户位于另一个屏幕时,我必须手动处理显示和隐藏地图。

如果有人知道正确的解决方案,请分享。

4

1 回答 1

1

SupportMapFragment您应该添加自己的 Fragment 类,而不是直接将其添加到您的导航图中,该类将拥有和管理-SupportMapFragment这将是调用getMapAsyncSupportMapFragment在其自己的布局中拥有的类。

Navigation 的目标是将 Activity 与各个目的地的内容分离。让 Activity 管理单个目的地不是推荐的模式。

于 2018-05-21T01:31:48.667 回答