如果您查看 cheesesquare 应用程序中的CheeseDetailActivity,CollapsingToolbarLayout
似乎会导致Toolbar
API 21 上未对齐:
这也会导致Toolbar
向下滚动后被遮挡:
据推测,它应该看起来像这样(API 18 screenshot):
有没有人遇到过这种情况或知道使工具栏正确对齐的解决方案?
如果您查看 cheesesquare 应用程序中的CheeseDetailActivity,CollapsingToolbarLayout
似乎会导致Toolbar
API 21 上未对齐:
这也会导致Toolbar
向下滚动后被遮挡:
据推测,它应该看起来像这样(API 18 screenshot):
有没有人遇到过这种情况或知道使工具栏正确对齐的解决方案?
由于 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" />