1

在我的音乐播放器应用程序中,我有一个带有 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" /
4

1 回答 1

1

我找到了一种方法 - 添加:

        android:singleLine="true"

诀窍...

于 2012-06-18T12:12:02.383 回答