如何在片段中使用google maps android SDK?
How to use google maps android SDK in a fragment?
我正在使用 android 地图 sdk 并尝试在其上绘制一个点。我按照给定的步骤进行操作 here
我收到一个 NPE,说我的 Support Map Fragment 为空。我猜这是因为我在我的主要片段中使用视图绑定并将视图设置为 binding.getroot()。
我声明这个的代码。
SupportMapFragment supportMapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager().findFragmentById(R.id.map_view);
supportMapFragment.getMapAsync(this::onMapReady);
我声明的 XML。
<androidx.fragment.app.FragmentContainerView
android:id="@+id/map_view"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_gravity="center"
android:layout_height="match_parent"/>
编辑:
与视图绑定无关。
您应该使用 <fragment>
标签而不是 androidx.fragment.app.FragmentContainerView
。 FragmentContainerView
只是片段的容器,我们可以在运行时在其上添加片段。另一方面,<fragment>
本身就是一个片段,这就是为什么存在 android:name
属性的原因。
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
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"
/>
如果您使用片段,您应该使用 getChildFragmentManager()
SupportMapFragment supportMapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.map_view);
更新-> 是的,对不起,我之前错了。结果 FragmentContainerView
确实支持在 xml 中添加片段。试试下面的代码。
<androidx.fragment.app.FragmentContainerView
xmlns:android="http://schemas.android.com/apk/res/android"
class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/fragmentContainerView"
android:layout_width="match_parent"
android:tag="mapFragment"
android:layout_height="match_parent" />
然后可以使用#findFragmentByTag
.
获取地图片段
SupportMapFragment supportMapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentByTag("mapFragment");
我正在使用 android 地图 sdk 并尝试在其上绘制一个点。我按照给定的步骤进行操作 here 我收到一个 NPE,说我的 Support Map Fragment 为空。我猜这是因为我在我的主要片段中使用视图绑定并将视图设置为 binding.getroot()。
我声明这个的代码。
SupportMapFragment supportMapFragment = (SupportMapFragment) getActivity().getSupportFragmentManager().findFragmentById(R.id.map_view);
supportMapFragment.getMapAsync(this::onMapReady);
我声明的 XML。
<androidx.fragment.app.FragmentContainerView
android:id="@+id/map_view"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_gravity="center"
android:layout_height="match_parent"/>
编辑: 与视图绑定无关。
您应该使用 <fragment>
标签而不是 androidx.fragment.app.FragmentContainerView
。 FragmentContainerView
只是片段的容器,我们可以在运行时在其上添加片段。另一方面,<fragment>
本身就是一个片段,这就是为什么存在 android:name
属性的原因。
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
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"
/>
如果您使用片段,您应该使用 getChildFragmentManager()
SupportMapFragment supportMapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.map_view);
更新-> 是的,对不起,我之前错了。结果 FragmentContainerView
确实支持在 xml 中添加片段。试试下面的代码。
<androidx.fragment.app.FragmentContainerView
xmlns:android="http://schemas.android.com/apk/res/android"
class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/fragmentContainerView"
android:layout_width="match_parent"
android:tag="mapFragment"
android:layout_height="match_parent" />
然后可以使用#findFragmentByTag
.
SupportMapFragment supportMapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentByTag("mapFragment");