不可转换类型无法投射

时间:2019-07-10 04:15:50

标签: java android google-maps android-fragments

我正在尝试实现地图,并且遇到了不可转换类型的错误;无法将android.support.v4.app.Fragment投射到com.google.android.gms.maps.SupportMapFragment

我看到了一些资源,但是对我没有用

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);
    // 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);
}
  

不可转换的类型;无法将'android.support.v4.app.Fragment'强制转换为   'com.google.android.gms.maps.SupportMapFragment'

2 个答案:

答案 0 :(得分:2)

按照Google Play services Android release notes for play-services-maps:17.0.0

  

警告:此版本是主要版本的更新和重大更改。

     
      
  • 更新您的应用程序以使用Jetpack(AndroidX);请按照Migrating to AndroidX中的说明进行操作。
  •   

地图17.0.0已切换为AndroidX。这意味着SupportMapFragment现在扩展了androidx.fragment.app.Fragment,而不是等效的支持库。您需要切换回16.1.0或将您的应用迁移到AndroidX。

答案 1 :(得分:0)

替换:

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

具有:

MapFragment mapFragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map);
mapFragment.getMapAsync(this);