How do you programmatically change the width & height of Google Maps v2 (support Fragment)?

前端 未结 4 1399
清歌不尽
清歌不尽 2020-12-17 09:43

How do you programatically change the width and height of a com.google.android.gms.maps.SupportMapFragment? I\'d imagine you might be able to wrap it in a viewgroup with mat

4条回答
  •  清酒与你
    2020-12-17 10:26

    I figured it out largely with the help of Programmatically set google map fragment visibility (API2).

    mMapFragment = (SupportMapFragment) (getSupportFragmentManager()
                .findFragmentById(R.id.storefront_map));
    ViewGroup.LayoutParams params = mMapFragment.getView().getLayoutParams();
    params.height = 900;
    mMapFragment.getView().setLayoutParams(params);
    

提交回复
热议问题