Android:在TextView中自动滚动文本

时间:2012-06-25 05:50:27

标签: android scroll textview

我创建了一系列固定宽度为100px的标签。选项卡包含一个图像,其下方有一些文本。如果文本太长而不适合,我希望它自动滚动。我只想要一条线。我试过以下但是没有用。我使用的是Android 2.3:

<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>

知道为什么这不起作用?我从另一个帖子中看到了解决方案,并且用户表示它可以正常工作。

4 个答案:

答案 0 :(得分:11)

在您的活动中,如果要对文本进行选取

,则必须添加
  TextView tv=(TextView)findViewById(R.id.textview1);
  tv.setSelected(true);

答案 1 :(得分:3)

答案 2 :(得分:0)

<TextView

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:gravity="center"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:text="Auto text scroller" 
        android:textSize="50sp"
        />

答案 3 :(得分:0)

请注意,如果文本的长度小于为其定义的边界的宽度,则不会滚动。在这种情况下,您可能希望使用以下内容扩展文本:

- 。 。 。 。

String charsInBreak = "   ";
 while (bounds.width() < this.m_width)
 {
    m_text = (m_text + charsInBreak + m_text);
    paint.getTextBounds(m_text, 0, m_text.length(), bounds);
 } 

如果你想让自己的文字永远占据一席之地:

m_textView.setMarqueeRepeatLimit(-1);