gpt4 book ai didi

android - 带有 AppBarLayout 和工具栏的新 Android 设计库错误

转载 作者:IT老高 更新时间:2023-10-28 21:52:46 25 4
gpt4 key购买 nike

我正在使用基于此示例的新 Android 设计库 chrisbanes/cheesesquare在 github 和 here

我已经运行了示例,但在 CheeseDetailActivity 中的工具栏出现问题。工具栏未按应有的方式显示。看看下面的图片:

首先你可以看到工具栏没有正确显示。

enter image description here

在第二张图片中,您可以看到工具栏正确显示,但通知栏是白色的。发生这种情况是因为我从 android.support.design.widget.CoordinatorLayout 中删除了 active_detail.xml android:fitsSystemWindows="true"

enter image description here

我认为 fitsSystemWindows 应该是正确的,并且问题与 android.support.design.widget.AppBarLayout 有关,但我不知道该怎么做解决这个问题。我尝试使用与 notificationBar 高度相同的 marginTop 但它不起作用。

任何建议表示赞赏:)

这是activity_detail.xml的一部分:

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

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

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

<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
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:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />

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

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

最佳答案

使用 app 文件夹中的新版本 build.gradle 文件更改您的 Design Library,例如:

compile 'com.android.support:design:22.2.1'

更新于 +AndroidDevelopers

我得到如下输出:

enter image description here

它会帮助你。

谢谢:)

关于android - 带有 AppBarLayout 和工具栏的新 Android 设计库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30540648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com