如何在像 WhatsApp 一样展开时模糊折叠工具栏图像?
How to blur the Collapsing toolbar image whan expanded like WhatsApp?
我认为这个问题已经回答了很多次,但其中 none 对我的情况有效。我有一个折叠工具栏,其中包含使用毕加索从网络加载的图像。展开折叠工具栏时,我在图像上显示标题。但我的问题是当图像颜色较浅时我看不到标题,因为它是白色的。
我尝试在 XML、
中将色调设置为 Imageview
android:tint="@color/colorGrey"
但它正在申请整个图像。
我检查了 What's app 上的折叠工具栏,它在标题所在的底部有一个模糊的图像。那么,如何实现类似What's app collapsing toolbar image的模糊效果?
我是参考这个想出来的。我刚刚在 CollapsingToolbarLayout
中添加了两个视图。一个将 layout_gravity
作为顶部,另一个在底部。如下图,
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">
<ImageView
android:id="@+id/iv_cover_photo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />
<View
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_gravity="center_horizontal|bottom"
android:background="@drawable/image_gradient_bottom" />
<View
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_gravity="top"
android:background="@drawable/image_gradient_top" />
<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/AppTheme.PopupOverlay" />
现在,这看起来与 Whats 的应用 android 个人资料页面图像几乎相似。
我认为这个问题已经回答了很多次,但其中 none 对我的情况有效。我有一个折叠工具栏,其中包含使用毕加索从网络加载的图像。展开折叠工具栏时,我在图像上显示标题。但我的问题是当图像颜色较浅时我看不到标题,因为它是白色的。
我尝试在 XML、
中将色调设置为 Imageviewandroid:tint="@color/colorGrey"
但它正在申请整个图像。
我检查了 What's app 上的折叠工具栏,它在标题所在的底部有一个模糊的图像。那么,如何实现类似What's app collapsing toolbar image的模糊效果?
我是参考这个CollapsingToolbarLayout
中添加了两个视图。一个将 layout_gravity
作为顶部,另一个在底部。如下图,
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">
<ImageView
android:id="@+id/iv_cover_photo"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax" />
<View
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_gravity="center_horizontal|bottom"
android:background="@drawable/image_gradient_bottom" />
<View
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_gravity="top"
android:background="@drawable/image_gradient_top" />
<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/AppTheme.PopupOverlay" />
现在,这看起来与 Whats 的应用 android 个人资料页面图像几乎相似。