2 つのオブジェクト (GIS ベース)ViewSwitcher
を切り替えるために使用しようとしています。MapView
しかし、次の例外が発生し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)私の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
これらの2つのビューを追加するために使用しています:
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();