其他分享
首页 > 其他分享> > android中的片段 – getMapAsync()

android中的片段 – getMapAsync()

作者:互联网

我在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>

解决方法:

在您的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;
}

希望这能帮助你.

标签:android,android-fragments,android-studio,google-maps,supportmapfragment
来源: https://codeday.me/bug/20190930/1835383.html