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

前端 未结 4 1288
清歌不尽
清歌不尽 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:29

    this is an example using onConfigurationChanged() method :

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        setContentView(R.layout.main);
        findViewById(R.id.storefront_map).getLayoutParams().width = 400;
    }
    

提交回复
热议问题