Androidアプリでテキストビュー全体ではなく、テキストビューのテキストをアニメーション化したい。私は現在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"/>