如何停止textview动画的褪色?

时间:2019-04-23 06:59:59

标签: java android animation

我使用了com.tomer.fadingtextview库对textview进行淡入淡出动画处理,但是它正常工作,但是我想在几秒钟后停止该动画。我该怎么办?

activitymain.xml

<com.tomer.fadingtextview.FadingTextView
        android:id="@+id/headline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="150dp"
        android:fontFamily="@font/goingforward"
        android:textColor="@color/Denim"
        app:texts="@array/title"
        android:textStyle="bold"
        android:textSize="40sp"
        android:textAllCaps="false"
        app:timeout="500"/>

3 个答案:

答案 0 :(得分:0)

您可以通过这种方式在几秒钟后停止[JsonIgnore] public int? Modifiedby { get; set; } TextView

animation

答案 1 :(得分:0)

如果您想停止动画一段时间,请使用计时器。

    new Timer().schedule(new TimerTask() {          
    @Override
    public void run() {
        // this code will be executed after 2 seconds 
        textview.clearAnimation();    
    }
}, 2000);

答案 2 :(得分:0)

您可以使用我的库为视图设置动画,也可以使用FadeAnimation淡入任何视图并链接到其他动画。 https://github.com/ZachBublil/Choreographer