固定幅が100pxの一連のタブを作成しました。タブには、テキストの下にテキストが含まれています。テキストが長すぎてフィットしない場合は、自動的にスクロールします。私は1つの行だけが必要です。私は以下を試みたが、うまくいかなかった。私はAndroid 2.3を使用しています:Android:TextViewのテキストの自動スクロール
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginRight="3dp"
android:layout_marginTop="3dp"
android:background="#ff737373"
android:gravity="center"
android:minWidth="64dp"
android:orientation="vertical"
android:padding="3dp" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:tag="tabImage" >
</ImageView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:singleLine="true"
android:maxWidth="100px"
android:tag="tabCaption"
android:textColor="#ffd9d9d9"
android:textSize="16sp" />
</LinearLayout>
これはなぜ機能しないのでしょうか?私は別の投稿から解決策を見つけ、ユーザーはそれが動作することを示しました。
これを掲示した後、私はいくつかのより多くの検索を行なったし、同様にこの出くわしました。とにかくありがとう! – AndroidDev