添加导航抽屉到现有的Andrdoid谷歌地图

时间:2015-10-22 11:25:47

标签: android google-maps navigation-drawer

我正在开发Android Google地图项目。

这是我想要的。

默认屏幕与 this类似,抽屉页面必须与this

相似

我已经完成了谷歌地图部分,我创建了一个新的导航抽屉活动。我怎么想连接这两个?我的意思是,如何将导航栏下的屏幕设置到我的地图页面?

已经尝试过,

@Override

public void onCreate(Bundle savedInstanceState){

super.onCreate(savedInstanceState);
FragmentTransaction tx = getSupportFragmentManager().beginTransaction();
tx.replace(R.id.content_frame, new Fragment1());
tx.commit();

}

没用。

请帮忙。这可能是一个愚蠢的问题。但是,我是Andrdoid的新手。

由于

-Edit -  这是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=".MapsActivity"
android:name="com.google.android.gms.maps.SupportMapFragment" />

以下是activity_navigation.xml

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<include layout="@layout/activity_maps"/>

<android.support.design.widget.NavigationView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    app:headerLayout="@layout/drawer_header"
    app:menu="@menu/drawer"/>

以下是drawer_header.xml

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="192dp"
    android:background="?attr/colorPrimaryDark"
    android:padding="16dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark"
    android:orientation="vertical"
    android:gravity="bottom">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Abc"
        android:textAppearance="@style/TextAppearance.AppCompat.Body1"/>

</LinearLayout>

这是drawer.xml(菜单)

    <?xml version="1.0" encoding="utf-8"?>

<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <group android:checkableBehavior="single">

    </group>

    <item android:title="Sub items">
        <menu>

        </menu>
    </item>

</menu>

我找不到发生的事。但是,我仍然在使用此代码时遇到同样的错误。

1 个答案:

答案 0 :(得分:1)

请按照以下步骤操作。

  1. 右键点击Android Studio项目

  2. 选择新建 - &gt;活动 - &gt;导航抽屉活动

  3. 提供名称并创建导航抽屉活动

  4. 打开activity_drawer.xml

  5. 添加以下代码<include layout="@layout/activity_maps"/>

  6. 您会得到答案

  7. 希望这会有所帮助。 :)