在我的应用程序中,我必须实现一个自动滚动的文本视图,我引用了这个链接。
现在我有一个滚动的 tetxview。但根据我的要求是我有一个字符串数组(我已经解析并且我有一些字符串)..考虑数组可能是
string[] array=new string{"fgsdfd","gdfghdjhsd","gdfjhsgfhds"};
现在我希望这个数组显示在那个文本视图中(它将自动滚动)。
我想要这样:
fgsdfd gdfghdjhsd gdfjhsgfhds------------------>this will scroll automatically
这是我的文本视图(滚动):
<TextView
android:text="Really Long Scrolling Text Goes Here.... ..... ............ .... ...."
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:id="@+id/TextView03"
android:padding="5dip"
android:layout_width="wrap_content"
android:textColor="#000000"
android:layout_height="wrap_content" />
如何将字符串数组设置为 tetxview ..请帮助我。