Googleマップでポイントにズームしたいのですが、11ではなくAndroid SDK 8を使用したいです
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="90"
class="com.google.android.gms.maps.SupportMapFragment" />
と
mapView = (MapView) findViewById(R.id.map);
mapView.setBuiltInZoomControls(true);
mc = mapView.getController();
しかし、私はエラーがあります
java.lang.ClassCastException: android.support.v4.app.NoSaveStateFrameLayout cannot be cast to com.google.android.maps.MapView
だから私はsdk8でポイントにズームしたいと思います
ありがとう