0

我正在尝试使用ViewSwitcher在两个对象之间切换MapView(基于 GIS)。但我在以下位置得到以下异常magnifyMap (**line xyz**) mapview

java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.

即使在MapViews从父布局 ( homeScreenLayout) 中删除子视图 ( ) 之后。以下是相关的片段。

1)我的第一个MapView是 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/homeScreenLayout">

<MapView
    xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/map"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
</MapView>

</RelativeLayout>

2)我的第二个MapView在我的活动中:

        MapView map = (MapView) findViewById(R.id.map);
        MapView magnifyMap = new MapView(ActivityMap.this);
        magnifyMap = _map;
        magnifyMap.setExtent(new Envelope(_tappedPoint, 3.0, 3.0));

3)我ViewSwitcher用来添加这两个视图:

        homeScreenLayout.removeView(map);
        homeScreenLayout.removeView(magnifyMap);

        ViewSwitcher viewSwitcher = new ViewSwitcher(ActivityMap.this);
        homeScreenLayout.addView(viewSwitcher);

        viewSwitcher.addView(map, 0, new ViewGroup.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
        // **line xyz**
        viewSwitcher.addView(magnifyMap, 1, new ViewGroup.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); // line xyz

        viewSwitcher.showNext();
4

1 回答 1

0

在一个基于 ArcGIS 的 Android 应用程序中,我们不能有多个 MapView 对象。因此,我们不能使用 ViewSwitcher 来完成这项任务。

于 2011-12-22T15:19:22.093 回答