如何设置类似字幕的文本视图的动画



我有一个文本视图,我需要使用动画在屏幕上标记这些视图(比如新闻频道上闪烁的闪光新闻)。我如何在android中实现这一点我尝试了这个答案

但没有得到解决方案请帮忙?

main.xml

    <TextView
    android:id="@+id/mywidget"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:lines="1"
    android:ellipsize="marquee"
    android:fadingEdge="horizontal"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true"
    android:textColor="#ff4500"
    android:text="Simple application that shows how to use marquee, with a long text" 
     />

java类

    TextView tv = (TextView) this.findViewById(R.id.mywidget);  
    tv.setSelected(true);  // Set focus to the textview

最新更新