Android中的水平滚动文字

时间:2010-10-05 09:33:47

标签: android text textview horizontal-scrolling

我一直在寻找相当长的一段时间,我无法直接回答我的问题。

这很简单:当你选择一个应用程序时,如何像市场中的长应用程序名称一样获得一个漂亮的滚动文本?

5 个答案:

答案 0 :(得分:16)

我自己想通了。

android:ellipsize="marquee"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"

答案 1 :(得分:8)

在您的动画文件夹中制作翻译动画,例如:

<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="12000"
    android:fromXDelta="100"
    android:interpolator="@android:anim/linear_interpolator"
    android:repeatCount="infinite"
    android:repeatMode="restart"
    android:toXDelta="-100" />

然后到你的文本视图:

yourtextview.startAnimation((Animation)AnimationUtils.loadAnimation(Context,R.anim.youranim_xml));

希望这对你有所帮助。

修改

试试这个:

<TextView 
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:lines="1"
android:marqueeRepeatLimit="marquee_forever"
android:padding="4dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Simple application that shows how to use marquee, with a long text" />

答案 2 :(得分:6)

对我有用的决定:

textView.setSelected(true); 
textView.setEllipsize(TruncateAt.MARQUEE);
textView.setSingleLine(true);

没有可聚焦的参数

答案 3 :(得分:0)

android:ellipsize="marquee"

答案 4 :(得分:0)

  1. 使用带有以下配置的普通TextView:

    android:text="your text here"
    android:id="@+id/MarqueeText"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:scrollHorizontally="true"
    android:focusable="true"
    android:focusableInTouchMode="true" />
    
  2. 问题在于您无法调整滚动文本的速度。

    1. TextView
    2. 中附上ScrollView

      &#13;
      &#13;
          <ScrollView
              android:layout_width="match_parent"
              android:layout_height="wrap_content">
                  <TextView
                  android:id="@+id/myTextView"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:text="Your Text here" >
              </TextView>
          </ScrollView>
      &#13;
      &#13;
      &#13;

      1. 创建自定义类并按照此thread
      2. 进行操作