マーキー・アニメーションは機能しませんが、これは私が行ったことです。マーキー・テキスト・ビュー・アニメーション
<LinearLayout android:layout_height="wrap_content"
android:layout_width="wrap_content" android:background="@drawable/bg_trans"
android:layout_alignParentBottom="true" android:orientation="vertical">
<TextView android:id="@+id/trackName"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:textColor="@android:color/white" android:textSize="18sp"
android:maxLines="2" android:ellipsize="marquee"
android:scrollHorizontally="true"
android:focusable="true" android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:layout_gravity="center_horizontal" />
<TextView android:id="@+id/artistName"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:textColor="@android:color/white" android:textSize="18sp"
android:maxLines="2" android:ellipsize="marquee"
android:scrollHorizontally="true"
android:focusable="true" android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:layout_gravity="center_horizontal" />
</LinearLayout>
これは最初のテキストビューでは機能しますが、2番目のテキストビューでは機能しません。私は間違って何をしていますか?
を追加する私のために働い追加する必要があり、その後何の上に言及されているその他しかし、テキストは、それが動作するためにtextviewよりも大きくなければなりませんか? – Hades
ええ、それ以外の場合は、私は全体を見ることができるので、テキストを動かしている点は表示されません:) – bluefalcon
それはアニメーションと呼ばれている理由です。 – Hades