我想使用我在XML中指定的 supportMapFragment 。 由于不推荐使用 supportMapFragment.getMap(),因此将使用 supportMapFragment.getMapSync()。 As per docs
但是,我在 SupportMapFragment 类中找不到方法 supportMapFragment.getMapAsynSync(),只能找到 getMap()
我安装了 24.4.1 版本的Android SDK工具。 我如何获得 supportMapFragment.getMapAsynSync()?
答案 0 :(得分:4)
使用SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
supportMapFragment.getMap();
getMapSync()
没有名为getMapAsync()
的方法,但有supportMapFragment.getMapAsync();
com.google.android.gms:play-services:8.1.0'
并将您的游戏服务更新为gradle中的{{1}}