各位仁兄,代码如下,很简单的走马灯效果,但是显示速度太慢了,能不能设置速度,求解?谢啦<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/information_plate">
<TextView android:layout_width="fill_parent" android:padding="10dip"
android:layout_height="wrap_content"
android:textColor="#000000" android:singleLine="true"
android:ellipsize="marquee" android:marqueeRepeatLimit="marquee_forever"
android:focusable="true" android:selectAllOnFocus="true"
android:clickable="true" android:focusableInTouchMode="true"
android:freezesText="true"
android:id="@+id/myTextView"
>

</TextView></LinearLayout>