[解決]我加了這MainActivity XML文件:NavigationDrawer背後MapFragment
<FrameLayout
android:id="@+id/place_map_here"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
<FrameLayout
android:id="@+id/bugfixview"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:background="@android:color/transparent"/>
,並在那裏我改變了片段:
mapFragment = new FragmentMapView();
android.app.FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.add(R.id.place_map_here, mapFragment, "map");
ft.commit();
編輯:剛剛意識到,我不使用MapFragment XML (舊版本確實抱歉)
我已將片段更改爲MapFragment,現在我的NavigationDrawer滑入MapFragment後面:( 代碼:
MapFragmant xml(刪除的代碼)
MainActivity xml。這裏是我的抽屜裏宣佈
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<FrameLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
<ListView
android:id="@+id/drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#333"
android:choiceMode="singleChoice"/>
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
我希望這是你需要真棒像往常一樣,並幫助菜鳥跟我一樣:)信息
如果你改變了佈局,使根是'DrawerLayout'而不是'RelativeLayout'會發生什麼? – gunar
你可以發佈java代碼,我想看看你是如何替換片段。 – ARP
你可以把'MapView'放在'main'裏面嗎? – gunar