从工具栏中删除默认边距底部

remove default margin bottom from Toolbar

在我的应用程序中,我使用 android.support.v7.widget.Toolbar 作为工具栏。

这是我的布局

<?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"
tools:context="com.todo.app.MainActivity"
style="@style/MainActivityBg">

<android.support.design.widget.AppBarLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/AppTheme.AppBarOverlay"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        style="@style/AppTheme.ActionBar"/>

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

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

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
tools:context="com.todo.app.MainActivity"
android:layout_marginTop="5dp">  <!-- for adding some space between the toolbar and the rest, and this is the cause of the problem! -->

<android.support.v7.widget.RecyclerView
android:id="@+id/task_list"
android:layout_width="match_parent"
android:layout_height="match_parent" />

我尝试在工具栏和视图的其余部分之间添加一些 space。为此,我将 marginTop 中的 5dp 添加到视图正下方的布局中。这导致了这个问题: 当我滚动视图时,工具栏下还有一些 space。

在我的样式文件 xml 中,没有边距或填充的样式。 如何在工具栏和其余部分之间添加一些 space 而不会触发此问题(当我滚动视图时)?

如果 5dp 上边距不是问题,则可能是工具栏高度,请尝试将 4dp 更改为更高的值,然后检查是否可以解决您的问题。你能试试 margin top 吗?负边距有时也会起作用。在工具栏的按钮上设置负边距并勾选。

原因

根据 xml 文件,在我看来:

<android.support.constraint.ConstraintLayout
    ...
    android:layout_marginTop="5dp"> 

是裁剪 RecyclerView 内容的原因。

当你在AppBarLayoutConstraintLayout的上边缘之间设置layout_marginTop时出现5dp高空space。

您可以通过为开发人员打开 Android 选项之一来确认:Show Layout Bounds

解决方案

对于您想要达到的效果,请尝试删除 android:layout_marginTop 并为 RecyclerView 设置 android:paddingTop,同时将 android:clipToPadding 设置为 false 。 查看 .

中的 gif
<android.support.v7.widget.RecyclerView
    android:id="@+id/task_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="5dp"
    android:clipToPadding="false" />

这将允许您在可滚动内容的开头添加所需的 space 但防止裁剪项目。