CollapsingToolbarLayout:setShadowLayer

时间:2016-02-04 18:50:37

标签: android textview android-collapsingtoolbarlayout

我有一个insert into dummy(id, name, size, create_date) values (1, 'Eric', 12, toTimestamp(now())); ,用户的名字在折叠模式和展开模式下显示。

展开时看起来像这样:

enter image description here

半场崩溃时看起来像这样:

enter image description here

您可以看到白色文字在展开模式下与背景图像的效果不佳。

通常为了提高文本的清晰度,如果这是一个textview,我通常会设置ShadowLayer:http://developer.android.com/reference/android/widget/TextView.html#setShadowLayer(float,%20float,%20float,%20int)

在这种情况下,因为它是collapsingToolbarLayout,所以它不是collapsingToolbarLayout,所以看起来该方法无法在文本后面设置阴影。

有没有人知道一种方法可以增加textview中文字的澄清,例如可能在collapsingToolbarLayout中抚摸文字或添加阴影?

1 个答案:

答案 0 :(得分:7)

我通过查看这个帖子来解决这个问题:

Android CollapsingToolbarLayout Title background

用户实际上问过一个非常相似的问题,答案是使用一个非常好用的文字保护网页。

为方便起见,我复制并粘贴代码:

使用文字保护稀松布(向下滚动一下)。我的例子假设标题文本是白色的,因此可能需要进行一些调整以优化您的情况。

在CollapsingToolbarLayout中,在ivBigImage之后添加以下内容:

<View
    android:layout_width="match_parent"
    android:layout_height="@dimen/sheet_text_scrim_height_top"
    android:background="@drawable/scrim_top"
    app:layout_collapseMode="pin"/>

<View
    android:layout_width="match_parent"
    android:layout_height="@dimen/sheet_text_scrim_height_bottom"
    android:layout_gravity="bottom"
    android:layout_alignBottom="@+id/image"
    android:background="@drawable/scrim_bottom"/>

在Drawable文件夹中,添加:

scrim_top.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
    android:angle="270"
    android:startColor="@color/translucent_scrim_top"
    android:centerColor="@color/translucent_scrim_top_center"
    android:endColor="@android:color/transparent"/>
</shape>

和scrim_bottom.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
    android:angle="90"
    android:startColor="@color/translucent_scrim_bottom"
    android:centerColor="@color/translucent_scrim_bottom_center"
    android:endColor="@android:color/transparent"/>
</shape>

对于颜色,我用过:

<color name="translucent_scrim_top">#26000000</color>
<color name="translucent_scrim_top_center">#0C000000</color>
<color name="translucent_scrim_bottom">#2A000000</color>
<color name="translucent_scrim_bottom_center">#0D000000</color>

对于尺寸,我使用了88dp的高度。

以下是应用代码后的效果:

enter image description here