<TextView android:id="@+id/textMsg"
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent"
  android:textColor="#F00"
  android:textSize="220px"
  android:ellipsize="marquee" 
  android:singleLine="true" 
  android:focusableInTouchMode="true"
  android:marqueeRepeatLimit="marquee_forever"
  android:focusable="true" 
  android:text="Simple application that shows how to use"
  android:background="#F99"
  android:gravity="center">
</TextView> 实现了文本滚动。
但想实现自由控制滚动速度是否可实现?
有什么方法?