我有一个文本视图,我需要使用animation.now屏幕上的那些屏幕(如新闻频道上的flash新闻)。如何在android中实现这个我试过this answer
但是没有得到解决方案请帮忙吗?
答案 0 :(得分:7)
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 Class
TextView tv = (TextView) this.findViewById(R.id.mywidget);
tv.setSelected(true); // Set focus to the textview