在我的音乐播放器应用程序中,我有一个带有Artist,Title等的TextView,它在View中水平滚动。 (就像旧的html marquee标签一样)。它适用于Xperia Arc上的Android 2.3.4,但不适用于三星Galaxy Nexus(文本只显示而不是滚动)。 TextView的定义如下。在代码中,它只是使用匹配的Songtext设置。
<TextView
android:id="@+id/songArtist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:textColor="#FFFFFA" /
答案 0 :(得分:1)
我找到了一种方法 - 添加:
android:singleLine="true"
诀窍......