我想在 Android 应用程序中为 textview 的文本而不是整个 textview 设置动画。我目前正在使用Marquee
Android textview 的属性,但它不是我想要的 100%,所以我想为 textView 中的文本设置动画,这样我也可以处理事件。如果有人解决此问题,请分享您的答案。谢谢
这是我目前使用 Marquee 所做的
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentLeft="true"
android:duplicateParentState="true"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="bottom"
android:maxLines="1"
android:scrollbars="horizontal"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Hello World"
android:textColor="#FFFFFF"
android:textSize="24sp"/>