是否可以为 TextView 中的文本添加效果?

发布于 2024-11-06 20:07:06 字数 60 浏览 0 评论 0原文

在我的启动屏幕中,我有一个 TextView,它显示应用程序的名称。是否可以为此文本添加效果(例如阴影)?

In my splash screen I have a TextView that it shows the name of application. Is it possible to add effect(s) (for example shade) to this text?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抽个烟儿 2024-11-13 20:07:06

你可以用这样的东西来放置阴影,它可以工作

<TextView
    android:id="@+id/text"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:shadowColor="#555555"
    android:shadowDx="5.0"
    android:shadowDy="5.0"
    android:shadowRadius="3.0"
    />

You can use something like this to put the shadow, it works

<TextView
    android:id="@+id/text"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:shadowColor="#555555"
    android:shadowDx="5.0"
    android:shadowDy="5.0"
    android:shadowRadius="3.0"
    />
一身骄傲 2024-11-13 20:07:06

是的,当然,您可以使用微光效果使您的启动画面更具创新性。

如果你实现了,那么启动屏幕上的应用程序名称将会有从左到右的发光效果。
你可以看看我对这个效果的回答。
https://stackoverflow.com/a/34327956/2022000

Yes of-course you can make your splash screen more innovative with Shimmer Effect.

If you implement then name of application on splash screen will have glow effect from left to right.
You can see my answer for this effect.
https://stackoverflow.com/a/34327956/2022000

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文