我在 a 中使用了 Google Maps (V2),PopupWindow
当我运行应用程序时,地图没有显示。甚至它应该是完全透明的区域,我可以PopupWindow
通过它看到下面的活动。
知道这是为什么吗?
popup_window.xml 中的片段
<fragment
android:id="@+id/popup_alert_map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/popup_alert_description"
android:layout_marginTop="10dp"
class="com.google.android.gms.maps.SupportMapFragment" />
以及我如何在 Popup.java 中展示它
SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.popup_alert_map);
locationMap = supportMapFragment.getMap();
locationMap.setMyLocationEnabled(true);
locationMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
我有另一个Activity
地图,它显示得很好。
非常感谢任何帮助...