我是Android开发的新手。
我从android studio向导制作了Google Map活动,我也使用相同的向导制作了导航抽屉活动,它们运行良好。
我已经通过创建一个导航抽屉并在其中插入Google地图片段来组合它们,除了这个问题之外它还非常好:
哦,抱歉迟到的回复,这是我的示例代码
创建导航抽屉后,我创建了一个Google地图活动,然后从“activity_maps.xml”中复制整个片段(我做得对吗?)
然后我将其粘贴到“fragment_main,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" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity$PlaceholderFragment">
<TextView android:id="@+id/section_label" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<!--THIS IS THE GOOGLE MAP FRAGMENT FROM activity_maps.xml-->
<fragment 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"
android:id="@+id/map"
tools:context="com.e_mergetechnologies.embereye.MapsActivity"
android:name="com.google.android.gms.maps.SupportMapFragment" />
<!--///////////////////////////////////////////////////////-->
</RelativeLayout>
^ _ ^谢谢先进的人!