私は Android Studio 1.1 と AP1 21 (コースの一部として必要なバージョン) を使用しています。を使用して新しいプロジェクトを作成しますGoogle Maps Activity
。
自動生成されたコード内で、次のエラー メッセージが表示されます: Error:(48, 21) error: cannot find symbol method getMap()
、setUpMapIfNeeded
メソッド内:
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap();
// Check if we were successful in obtaining the map.
if (mMap != null) {
setUpMap();
}
}
}
この問題を解決する方法はありますか? ありがとう!