gpt4 book ai didi

android - 如何使 TextView 闪烁

转载 作者:IT王子 更新时间:2023-10-28 23:44:03 24 4
gpt4 key购买 nike

伙计们,我有一个 TextView ,我需要它闪烁,请帮助我。

<TextView 
android:id="@+id/usage"
android:layout_marginTop="220dip"
android:layout_marginLeft="45dip"
android:layout_marginRight="15dip"
android:typeface="serif"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Google "
android:textColor="#030900"/>

我希望 google 文本闪烁

最佳答案

你可以用这个:

TextView myText = (TextView) findViewById(R.id.myText );

Animation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(50); //You can manage the blinking time with this parameter
anim.setStartOffset(20);
anim.setRepeatMode(Animation.REVERSE);
anim.setRepeatCount(Animation.INFINITE);
myText.startAnimation(anim);

这与我在这篇文章 Blinking Text in android view 中给出的答案相同

希望这会有所帮助!

关于android - 如何使 TextView 闪烁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9294112/

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