我认为这个问题得到了很多次回答,但在我的案例中都没有。我有一个折叠工具栏,使用Picasso从网络加载图像。展开折叠工具栏时,我在图像上显示标题。但我的问题是,当图像颜色浅时我无法看到标题,因为它是白色的。
我尝试将色调设置为XML中的Imageview,
android:tint="@color/colorGrey"
但它正在申请整个图片。
我检查了什么应用程序中的折叠工具栏,其中有一个模糊图像朝向标题所在的底部。那么,如何实现模糊效果,如什么应用程序折叠工具栏图像?
答案 0 :(得分:0)
我通过引用这个answer来解决这个问题。我刚刚在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'App的Android个人资料页面图像相似。