1

私の音楽プレーヤーアプリケーションには、アーティスト、タイトルなどを含むTextViewがあり、ビュー内で水平方向にスクロールしています。(古いhtmlマーキータグのように)。XperiaArcのAndroid2.3.4で動作しますが、Samsung 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 に答える