无法使用ViewSwitcher切换地图视图

时间:2011-12-12 23:42:06

标签: android android-mapview illegalstateexception viewswitcher

我正在尝试使用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();

1 个答案:

答案 0 :(得分:0)

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