欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

百度地图BitmapDescriptorFactory.fromView() 不显示

程序员文章站 2022-05-25 20:59:50
...

BitmapDescriptorFactory.fromView() 在设置marker和InfoWindow时不显示

修改方案:

  popupView = LayoutInflater.from(this).inflate(R.layout.layout_map_pop_cinema, null);

// 跟布局设置下LayoutParams
 popupView.findViewById(R.id.rl_map_body).setLayoutParams(new ViewGroup.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT));

setLayoutParams内部会调用requestLayout();
相关标签: 地图Marker不显示