gpt4 book ai didi

android - 如何在 android 中以编程方式(通过代码,而不是 xml)使文本发光?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:27:29 25 4
gpt4 key购买 nike

我想知道如何让我的文本在 android 中发光,我知道如何通过具有某些属性的 xml 来实现,如下所示:

android:shadowColor="#6A8B00"
android:shadowDx="3"
android:shadowDy="3"
android:shadowRadius="10"
android:text="@string/glowText"
android:textColor="#E15529"
android:textSize="30sp"

但我想通过代码来做,这样我就可以更好地控制并在不同情况下或多或少地发光。也许有类似 view.setGlow 的东西?

最佳答案

您可以在 TextView 上使用 setShadowLayer (float radius, float dx, float dy, int color)。例如:

textView.setShadowLayer(30, 0, 0, Color.RED);

在 TextView 中找到 documentation

关于android - 如何在 android 中以编程方式(通过代码,而不是 xml)使文本发光?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34816226/

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