我的工具栏覆盖我的地图

时间:2016-11-24 07:29:49

标签: android layout fragment

我有下一个布局:

<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="sdfsf.MainActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    app:srcCompat="@android:drawable/ic_dialog_email" />

<fragment
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:id="@+id/map"
    tools:context="com.example.app.MapLocationActivity"
    android:name="com.google.android.gms.maps.SupportMapFragment"/>

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

当我创建我的谷歌地图时,看起来像工具栏在地图上并隐藏顶部区域。但我想在可见区域显示地图。如何在@ layout / content_main中设置片段?

1 个答案:

答案 0 :(得分:1)

您正在使用CoordinatorLayout,因此MapView将显示在AppbarLayout下,您可以将AppbarLayout和MapView包装到LinearLayout中,或者只是放入:

app:layout_behavior="@string/appbar_scrolling_view_behavior"
在MapView中

<fragment
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:id="@+id/map"
    tools:context="com.example.app.MapLocationActivity"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>