CollapsingToolbarLayout 中的 ImageView 未覆盖全高?
ImageView in CollapsingToolbarLayout not covering full height?
我在尝试实施新 CollapsingToolbarLayout
时遇到了一些问题。滚动、展开和折叠都可以正常工作,但我的 ImageView
(无论我设置什么类型的资源)都没有覆盖展开工具栏的整个高度。看这里:
这里我在图像视图上设置了android:src="@color/red"
,但它并没有覆盖真正的工具栏。它也不适用于位图。我在下面发布我的布局。
<android.support.v4.widget.DrawerLayout 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"
android:fitsSystemWindows="true">
<!-- content -->
<android.support.design.widget.CoordinatorLayout
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_height="@dimen/appbar_expanded_height"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
app:contentScrim="?attr/colorPrimary"
android:fitsSystemWindows="true">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:src="@color/red_600"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
app:layout_collapseMode="pin"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<!-- I load fragments here -->
<FrameLayout
android:id="@+id/fragment_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
<!-- nav drawer -->
<fragment
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>
在我看来,与 Cheese-Chris Banes-app 等应用程序的唯一区别是我将 app:layout_behavior
给 FrameLayout
。但是,在该框架内,我加载了具有 NestedScrollView
作为根视图的片段,这似乎工作正常。
我发现蓝色条是工具栏背景。也就是说,我有:
<item name="toolbarStyle">@style/MyToolbarStyle</item>
在我的主题中,并且:
<style name="MyToolbarStyle">
<item name="android:background">?attr/colorPrimary</item>
</style>
我曾经用它来为工具栏着色 colorPrimary
。但是,如果您想移动到设计库,则应该 删除 :折叠的工具栏颜色已由 CollapsingToolbarLayout
上的 app:contentScrim
属性管理.
我遇到了同样的问题,折叠工具栏没有覆盖图像的整个高度,但通过从 AppBarLayout
中删除单行来解决。那就是你只需要删除 android:fitsSystemWindows="true
就大功告成了。
<android.support.design.widget.AppBarLayout
android:layout_height="@dimen/appbar_expanded_height"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
去掉最后一行,即as.
android:fitsSystemWindows="true"
就是这样,很高兴...
我在尝试实施新 CollapsingToolbarLayout
时遇到了一些问题。滚动、展开和折叠都可以正常工作,但我的 ImageView
(无论我设置什么类型的资源)都没有覆盖展开工具栏的整个高度。看这里:
这里我在图像视图上设置了android:src="@color/red"
,但它并没有覆盖真正的工具栏。它也不适用于位图。我在下面发布我的布局。
<android.support.v4.widget.DrawerLayout 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"
android:fitsSystemWindows="true">
<!-- content -->
<android.support.design.widget.CoordinatorLayout
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_height="@dimen/appbar_expanded_height"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
app:contentScrim="?attr/colorPrimary"
android:fitsSystemWindows="true">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:src="@color/red_600"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
app:layout_collapseMode="pin"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<!-- I load fragments here -->
<FrameLayout
android:id="@+id/fragment_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
<!-- nav drawer -->
<fragment
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>
在我看来,与 Cheese-Chris Banes-app 等应用程序的唯一区别是我将 app:layout_behavior
给 FrameLayout
。但是,在该框架内,我加载了具有 NestedScrollView
作为根视图的片段,这似乎工作正常。
我发现蓝色条是工具栏背景。也就是说,我有:
<item name="toolbarStyle">@style/MyToolbarStyle</item>
在我的主题中,并且:
<style name="MyToolbarStyle">
<item name="android:background">?attr/colorPrimary</item>
</style>
我曾经用它来为工具栏着色 colorPrimary
。但是,如果您想移动到设计库,则应该 删除 :折叠的工具栏颜色已由 CollapsingToolbarLayout
上的 app:contentScrim
属性管理.
我遇到了同样的问题,折叠工具栏没有覆盖图像的整个高度,但通过从 AppBarLayout
中删除单行来解决。那就是你只需要删除 android:fitsSystemWindows="true
就大功告成了。
<android.support.design.widget.AppBarLayout
android:layout_height="@dimen/appbar_expanded_height"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
去掉最后一行,即as.
android:fitsSystemWindows="true"
就是这样,很高兴...