作出這樣一個佈局:
<FrameLayout
android:id="@+id/layout_mapContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="0"
android:background="@android:color/transparent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent" />
</FrameLayout>
在活動聲明:
FrameLayout mapLayout = (FrameLayout)findViewById(R.id.layout_mapContainer);
INITIALISE地圖是這樣的:
private void initialiseMap() {
FragmentTransaction mTransaction = getSupportFragmentManager().beginTransaction();
SupportMapFragment mFRaFragment = new MapFragmentActivity();
mTransaction.add(mapLayout.getId(), mFRaFragment);
mTransaction.commit();
try {
MapsInitializer.initialize(context);
} catch (Exception e) {
e.printStackTrace();
}
}
這裏MapFragmentActivity是類擴展SupportMapFragment
http://stackoverflow.com/questions/13733299/initialize-mapfragment-以編程方式使用map-api-v2 – Hulk
您不應該在另一個「fragment」中插入「fragment」。如果您不想使用XML佈局,最好通過「FragmentTransaction」將其插入到新的「活動」中。 – moictab