gpt4 book ai didi

android - Android中文本的阴影效果?

转载 作者:IT老高 更新时间:2023-10-28 12:53:40 25 4
gpt4 key购买 nike

Possible Duplicate:
Android - shadow on text?

如何在 TextView 中制作阴影效果文本。

有什么想法吗?

最佳答案

将这些放在 values/colors.xml 中

<resources>
<color name="light_font">#FBFBFB</color>
<color name="grey_font">#ff9e9e9e</color>
<color name="text_shadow">#7F000000</color>
<color name="text_shadow_white">#FFFFFF</color>
</resources>

然后在您的布局 xml 中,这里有一些 TextView 的示例

Light with Dark shadow 上的 float 文本示例

<TextView android:id="@+id/txt_example1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@color/light_font"
android:shadowColor="@color/text_shadow"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2" />

enter image description here

光与暗阴影 eclipse 刻文本示例

<TextView android:id="@+id/txt_example2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@color/light_font"
android:shadowColor="@color/text_shadow"
android:shadowDx="-1"
android:shadowDy="-1"
android:shadowRadius="1" />

enter image description here

Light with Dark shadow 上清晰文本示例

<TextView android:id="@+id/txt_example3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@color/grey_font"
android:shadowColor="@color/text_shadow_white"
android:shadowDx="-2"
android:shadowDy="-2"
android:shadowRadius="1" />

enter image description here

注意正值和负值...我建议您自己尝试颜色/值,但最终您可以调整这些设置以获得您想要的效果。

关于android - Android中文本的阴影效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3297437/

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