gpt4 book ai didi

android - 折叠工具栏布局 : setShadowLayer

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:08 25 4
gpt4 key购买 nike

我有一个 collapsingToolbarLayout,在折叠模式和展开模式下都显示用户名。

展开后是这样的:

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,而不是一个textview,所以看起来该方法无法在文本后面设置阴影。

有谁知道可以增加 collapsingToolbarLayout 中文本清晰度的方法,例如在 collapsingToolbarLayout 中抚摸文本或添加阴影?

最佳答案

我通过查看这个线程弄明白了这一点:

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 文件夹中,添加:

稀松布_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

关于android - 折叠工具栏布局 : setShadowLayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35209213/

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