https://github.com/antoniolg/MaterializeYourApp
我基本上遵循上面链接中的代码,但仍然无法在折叠的工具栏imageview上方显示状态栏。
我发现可行的一件事是将<item name="android:windowTranslucentStatus">true</item>
设置为样式。但这会使工具栏和状态栏重叠。
CollapsedToolbarImage ExpandedToolbarImage
基本上,我希望第一张图片中的状态栏像第二张图片一样。而且我猜状态栏已经是半透明的。这是我在样式中添加的部分内容。
<item name="android:windowIsTranslucent">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
另一个问题是我以编程方式设置了折叠的标题文本,但它也没有显示。
我也尝试过放置一些fitSystemWindow =“ true”,但仍然无法正常工作。下面是xml文件。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ScrollingActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/up_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/up_ctoolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false"
app:collapsedTitleGravity="center"
app:contentScrim="@android:color/transparent"
app:expandedTitleGravity="center"
app:layout_behavior="@string/title_activity_scrolling"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="true"
app:toolbarId="@+id/up_toolbar">
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="@dimen/header_height"
android:background="@drawable/nav_background"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/up_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:contentInsetStart="0dp"
app:layout_collapseMode="pin">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
android:id="@+id/up_back"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@android:color/transparent"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_back_white" />
<ImageButton
android:id="@+id/up_search"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@android:color/transparent"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_search_white" />
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/user_profile_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
答案 0 :(得分:0)
您应将以下代码添加到AppBarLayout块中
android:background="@android:color/transparent"
android:elevation="0dp"
android:shadowColor="@android:color/transparent"
android:stateListAnimator="@null"
它应该可以帮助您解决问题
答案 1 :(得分:0)
我知道这有点晚了,但是如果有帮助的话。 添加:
app:titleEnabled="false"
到折叠式工具栏中查找标题。
对于浮动在imageView上方的工具栏,将imageView的layout_gravity设置为底部或默认为居中。这将为您提供所需工具栏下方的底部图像视图。
可选:
视差用于为工具栏中的imageview提供良好的并行滚动效果动画。
<ImageView
android:id="@+id/toolbarCollapsingImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="?attr/actionBarSize"
android:layout_gravity="bottom"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"/>