我无法在Fragment中实施Google Map。
这是我的片段类的一部分:
public class FragmentStoreFinderMap extends Fragment implements OnMapReadyCallback {
// Google Map
private GoogleMap googleMap;
private int i;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
googleMap = ((SupportMapFragment)getActivity().getSupportFragmentManager().findFragmentById(
R.id.map)).getMapAsync(this);
我在getMapAsync(this)中收到错误。我告诉不兼容的类型。
它说:
必需:com.google.android.gms.map.GoogleMap
发现:无效
这是我的xml:<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<fragment class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
答案 0 :(得分:47)
在你的XML布局中你应该这样做
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
片段中的实现此
private MapView mapView;
private GoogleMap googleMap;
如果没有 onCreateView ,则覆盖 onCreateView ,就像下面的代码一样
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.your_layout, container, false);
}
在其中覆盖 onViewCreated() onViewCreated()把这个
mapView = (MapView) view.findViewById(R.id.map);
mapView.onCreate(savedInstanceState);
mapView.onResume();
mapView.getMapAsync(this);//when you already implement OnMapReadyCallback in your fragment
当您已在片段中实现 OnMapReadyCallback 时,请将此/代码添加为此
@Override
public void onMapReady(GoogleMap map) {
googleMap = map;
}
希望这会对你有所帮助。
答案 1 :(得分:1)
在我头脑中出现几点过热之后,感谢这篇文章和https://stackoverflow.com/a/34732804/3925554,我想说目前有两种方法可以将MapFragment添加到你的应用中(对不起,见下文):
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
class="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
通过这种方式,您必须使用标准片段并在其中实现。实际上你正在将一个片段插入另一个片段:
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
SupportMapFragment supportMapFragment = (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.map);
supportMapFragment.getMapAsync(this);
}
另一种方式是:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.main.MainActivity">
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
在这种情况下,您可以使用真正的SupportMapFragment并以这种方式实现它:
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
getMapAsync(this);
}
他们无需在mapView.onCreate(savedInstanceState);
内手动拨打mapView.onResume();
和onViewCreated()
,无论如何都不会推荐。
希望它有所帮助!
更新了:当我发布这个时,我测试了两种方式并且它们正在工作,我发誓!我选择了第二个选项,我不知道为什么但是昨天mapView突然变成空白,没有错误也没有例外,切换到第一个选项已经修复了它。诅咒你谷歌!为什么呢?!
答案 2 :(得分:0)
您的代码返回此错误,因为getMapAsync()
不返回任何内容。如果您查看此功能的文档:
public void getMapAsync(OnMapReadyCallback callback)
设置一个回调对象,该对象将在GoogleMap时触发 实例已准备好使用。
请注意:
必须从主线程调用此方法。回调将是 在主线程中执行。在Google Play服务的情况下 如果没有安装在用户的设备上,则不会触发回调 直到用户安装它。在极少数情况下,谷歌地图是 创建后立即销毁,不会触发回调。 回调提供的GoogleMap对象非空。
OnMapReadyCallback是一个需要实现并通过此函数传递的接口。目前没有为您的googleMap
变量分配任何内容,您应该在implements OnMapReadyCallback
@Override
public void onMapReady(GoogleMap googleMap) {
this.googleMap = googleMap;
}
此代码应位于Fragment中。由于您的Fragment已经实现了此接口,因此您将其作为this
传递。
答案 3 :(得分:0)
SupportMapFragment mMapFragment = SupportMapFragment.newInstance();
FragmentTransaction fragmentTransaction =
getChildFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.flMap, mMapFragment);
fragmentTransaction.commit();
mMapFragment.getMapAsync(this);