テキストビューが自動的に水平にスクロールするようにマーキーを実装したかったのですが、同じアクティビティでクロノメーターが表示されます。それらのうちの 2 つを一緒に実装すると、スクロールするテキストビューが機能せず、クロノメーターが機能します。クロノメーターをコメントアウトすると、テキストビューが機能します。しかし、私は両方を同時に機能させたいと思っています。それを実現する方法はありますか?
私は
textView.setSelected(true);
まだ動作していない使用してみました
<com.ff.fbin.ScrollingTextView
android:id="@+id/display_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:padding="5dip"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Really Long Scrolling Text Goes Here.... ..... ............ .... ...."
android:textSize="20dp"
android:textStyle="bold" />