android - 错误 : incompatible types: Fragment cannot be converted to SupportMapFragmen

标签 android google-maps

我正在尝试创建一个基本的谷歌地图 android 应用程序。 在我创建项目并获得 API key 后,我收到了这个错误。

“错误:类型不兼容:无法将 fragment 转换为 SupportMapFragment”

来自行: SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);

Java代码:(一切都是android studio生成的)

import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;


public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {

    private GoogleMap mMap;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);
        getSupportFragmentManager();
        // Obtain the SupportMapFragment and get notified when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);

    }

    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        // Add a marker in Sydney and move the camera
        LatLng sydney = new LatLng(-34, 151);
        mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
        mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
    }
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<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=".MapsActivity" />

最佳答案

我能够通过更改 gradle 中的依赖项来解决问题

implementation 'com.google.android.gms:play-services-maps:17.0.0'

implementation 'com.google.android.gms:play-services-maps:16.0.0'

关于android - 错误 : incompatible types: Fragment cannot be converted to SupportMapFragmen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56914488/

相关文章:

google-maps - Google API(方向) - 创建避开某些点的路线

javascript - 使用 Zippopotam.us 的 JSON 结果作为 Google map 坐标

android - 如何在谷歌地图上添加自定义标签

javascript - 如何在谷歌地图多边形内绘制直线

java - 从图库中选择后在 GridView 中显示图像

android - 在另一个包中调用 Activity

android - 如何在一个 Activity 中运行两个 AsyncTasks?

android - 没有互联网连接时禁用按钮

安卓 Realm .io : Row/Object is no longer valid

android - Map-Fragment (v2) Nullpointer(Lollipop 下的问题?)