我想用字幕的功能在我的Android應用程序進行滾動和正在使用此代碼爲實現這一目標:跑馬燈在android系統
<TextView
android:id="@+id/marqueetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:text="hello all how are you"
android:textColor="#ff4500"
/>
MarqueeText = (TextView)ShowTheMessages.this.findViewById(R.id.marqueetext);
MarqueeText.setSelected(true);
我不知道爲什麼它不working.I有經歷了許多相關的職位,但沒有找到解決辦法。請幫助我。提前感謝。
請幫助別人。 – user1726619