我有问题。以下是截图:
以下是代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="256dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:expandedTitleMarginStart="64dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yo Yo" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fabBtn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginBottom="@dimen/codelab_fab_margin_bottom"
android:layout_marginRight="@dimen/codelab_fab_margin_right"
app:borderWidth="0dp"
app:fabSize="normal" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:itemIconTint="@color/colorPrimaryDark"
app:itemTextColor="@color/colorPrimary"
app:menu="@menu/navigation_drawer_items" />
有时可以看到工具栏下方出现空白区域,但有时没有。 窦哟知道什么是错的?因为我真的不知道如何解决这个问题。
提前致谢,
编辑:我只能在Nexus 7中使用Android 5.1.1重现此内容
答案 0 :(得分:2)
将 android:fitsSystemWindows="true"
添加到CoordinatorLayout
,AppBarLayout
和CollapsingToolbarLayout
。
答案 1 :(得分:0)
尝试在NestedScrollView中插入此属性以强制执行正确的行为,这是一种解决方法,对我有用:
android:paddingTop="0dp"
android:layout_marginTop="0dp"