我正在使用谷歌地图Android API,我正在以编程方式创建地图。但是,我似乎无法弄清楚如何更改layout_height,layout_width和layout_margin。
我正在查看使用GoogleMapOptions的official guide,它应该为我提供与XML相同的选项。
这是我的代码。
GoogleMapOptions options = new GoogleMapOptions();
options
.compassEnabled(false)
.mapToolbarEnabled(false)
.rotateGesturesEnabled(false)
.scrollGesturesEnabled(false)
.tiltGesturesEnabled(false)
.zoomControlsEnabled(false)
.zoomGesturesEnabled(false);
MapFragment mMapFragment = MapFragment.newInstance(options);
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.mapMenu, mMapFragment);
fragmentTransaction.commit();