1

如果您查看 cheesesquare 应用程序中的CheeseDetailActivityCollapsingToolbarLayout似乎会导致ToolbarAPI 21 上未对齐:

错位

这也会导致Toolbar向下滚动后被遮挡:

在此处输入图像描述

据推测,它应该看起来像这样(API 18 screenshot):

在此处输入图像描述

有没有人遇到过这种情况或知道使工具栏正确对齐的解决方案?

4

1 回答 1

0

由于 v21 主题更改为包括:

<item name="android:windowDrawsSystemBarBackgrounds">true</item>

v21 需要在工具栏上修改边距,以考虑系统栏占用的空间。

尺寸.xml

<dimen name="action_bar_margin_top">0dp</dimen>

尺寸.xml (v21)

<dimen name="action_bar_margin_top">-24dp</dimen>

将边距和 fitSystemWindows 添加到Toolbar.

<android.support.v7.widget.Toolbar
    android:layout_marginTop="@dimen/action_bar_margin_top"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:fitsSystemWindows="true"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:layout_collapseMode="pin" />
于 2015-07-23T03:30:51.457 回答