gpt4 book ai didi

android - MapFragment ArcGis - 指定的子项已有父项

转载 作者:行者123 更新时间:2023-11-30 02:01:26 25 4
gpt4 key购买 nike

我正在尝试在 Android Studio 中显示来自 ArcGis 的 MapView。为此,我正在使用 Map Fragments,我将 Map 和其他 UI 内容放入 xml 中。将 MapView 元素放在布局文件中总是会崩溃,所以我是这样做的:

my_main_activity.xml

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/maps_app_activity_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<!-- The main content view -->

<FrameLayout
android:id="@+id/maps_app_activity_content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<!-- The navigation drawer -->
<ListView
android:id="@+id/maps_app_activity_left_drawer"
style="@style/drawer_listView_style"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/darker_gray"
android:choiceMode="singleChoice"
android:divider="@color/esri_gray"
android:dividerHeight="1px" />

这是 fragment 布局:ma​​p_fragment_layout.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_fragment_map_container_frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The map configuration -->
<com.esri.android.map.MapView
android:id="@+id/map_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
initExtent = "-9934033.827 1537316.31 -9933312.043 1537940.728" > <!-- xmin ymin xmax ymax -->
</com.esri.android.map.MapView>

我的 map fragment 类包含 MapView 的所有配置:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {

mMapContainer = (FrameLayout) inflater.inflate(R.layout.map_fragment_layout,container,false);

// Add dynamic layer to MapView (Base)
// Retrieve the map and initial extent from XML layout
MapView mapView = (MapView)mMapContainer.findViewById(R.id.map_layout);
ArcGISDynamicMapServiceLayer baseMap = new ArcGISDynamicMapServiceLayer(baseMapURL);
mapView.addLayer(baseMap);
//Creates a dynamic layer using service URL
ArcGISDynamicMapServiceLayer dynamicLayer = new ArcGISDynamicMapServiceLayer(dynamicMapURL);
//Adds layer into the 'MapView'
mapView.addLayer(dynamicLayer);

// Set the MapView to allow the user to rotate the map when as part of a pinch gesture.
setMapView(mapView);
mapView.zoomin();

return mMapContainer;
}

setMapView 函数配置其余的 MapView 选项:

private void setMapView(final MapView mapView) {

mMapView = mapView;
mMapView.setEsriLogoVisible(false);
mMapView.enableWrapAround(true);
mapView.setAllowRotationByPinch(true);

// Creating an inflater
mInflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

// Setting up the layout params for the searchview and searchresult layout
mlayoutParams = new FrameLayout.LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT, Gravity.LEFT | Gravity.TOP);
mlayoutParams.setMargins(LEFT_MARGIN_SEARCH, TOP_MARGIN_SEARCH,RIGHT_MARGIN_SEARCH, BOTTOM_MARGIN_SEARCH);

// set MapView into the activity layout
mMapContainer.addView(mMapView);

// Displaying the searchbox layout
showSearchBoxLayout();

调试后出现这个错误:

java.lang.RuntimeException: Unable to start activity ComponentInfo{zero.ucamaps/zero.ucamaps.MainActivity}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at android.app.ActivityThread.access$800(ActivityThread.java:151)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
at android.view.ViewGroup.addViewInner(ViewGroup.java:3936)
at android.view.ViewGroup.addView(ViewGroup.java:3786)
at android.view.ViewGroup.addView(ViewGroup.java:3727)
at android.view.ViewGroup.addView(ViewGroup.java:3700)
at zero.ucamaps.MapFragment.setMapView(MapFragment.java:313)
at zero.ucamaps.MapFragment.onCreateView(MapFragment.java:209)
at android.app.Fragment.performCreateView(Fragment.java:2053)

在从 getMapView() 返回之前,我已经尝试从它的父级中删除 MapView,但仍然崩溃。任何帮助都将不胜感激。

最佳答案

您尝试将 MapView 添加到同一容器两次,一次在 Java 中,一次在 XML 中。

map_fragment_layout.xml 中,您将 MapView 创建为名为 map_fragment_map_container_frame_layoutFrameLayout 的子级。没关系。

然后在 setMapView 中,您调用 mMapContainer.addView(mMapView),它尝试再次添加 MapView 作为相同的子级框架布局。这会导致异常并且是不必要的。删除该行代码。

关于android - MapFragment ArcGis - 指定的子项已有父项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31398693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com