1

我使用新的 Android 设计支持库。我必须在我的应用程序中做可滚动和可折叠的标题。如果我使用棒棒糖,一切都很好。但我不能在 KitKat 中做到这一点

这看起来像我需要

在此处输入图像描述

奇巧

在此处输入图像描述

如果我将 fitSystemWindows="true" 添加到根布局(协调器)和其他人中,我会得到结果:

(很抱歉,我没有足够的评分来发布图片和链接)

  • android 5 在 AppBarLayout 下面有白色区域

在此处输入图像描述

  • KitKat 没有重叠状态栏,但这很难看。

在此处输入图像描述

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginEnd="64dp"
        app:expandedTitleMarginStart="48dp"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/header"
            android:layout_width="match_parent"
            android:layout_height="220dp"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="parallax"/>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    </android.support.design.widget.CollapsingToolbarLayout>
    ...
    </android.support.design.widget.CoordinatorLayout>

我也在使用半透明状态栏。你能帮帮我吗?

4

1 回答 1

0

您无法在 KITKAT 中覆盖其默认 Android 操作系统主题,

根据不同操作系统版本的样式和主题,android 5.0 和 4.4.4(KITKAT) 中显示的内容都是正确的。

在排序 android 支持库中没有为较低版本的 Android OS 提供这样的未来

于 2015-08-11T10:34:36.027 回答