嵌套滚动视图高度问题

时间:2016-09-08 07:56:28

标签: android android-layout android-fragments google-maps-android-api-2 android-nestedscrollview

我已经使用底片实现了Google地图。但是,当我检查布局时,地图位于屏幕顶部,而不是占据屏幕的整个宽度和高度。我已经尝试了很多方法来解决这个问题,但没有运气。

enter image description here

enter image description here

以下是布局代码:

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

<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android" >

<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:layout_weight="1">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:layout_gravity="fill_vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        >
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="fill_vertical"
           >
            <fragment  xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:map="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:id="@+id/map"
                android:layout_gravity="fill_vertical"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context="com.app.headcount.MapsActivity"
                />
        </RelativeLayout>
    </android.support.v4.widget.NestedScrollView>


    <include layout="@layout/test"
        android:id="@+id/design_bottom_sheet"/>



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



</LinearLayout>

请你看看这个,让我知道究竟是哪里的问题? 谢谢。

1 个答案:

答案 0 :(得分:5)

尝试使用android:fillViewport =“true”