Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I use marquee text in an android application?

share|improve this question
Also, have a look at stackoverflow.com/questions/1827751/… – Felipe Micaroni Lalli Oct 19 '11 at 17:59

6 Answers

up vote 27 down vote accepted

Here is an example:

public class TextViewMarquee extends Activity {
    private TextView tv;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        tv = (TextView) this.findViewById(R.id.tv);  
        tv.setSelected(true);  // Set focus to the textview
    }
}

The xml file with the textview:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView
        android:id="@+id/mywidget"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:lines="1"
        android:ellipsize="marquee"
        android:fadingEdge="horizontal"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:textColor="#ff4500"
        android:text="Simple application that shows how to use marquee, with a long text" />
</RelativeLayout>
share|improve this answer
2  
marquee didn't work with this code on emulator – Suresh Manchi May 12 '11 at 9:44
1  
This Code is Working very well in android emulator. – Dipak Keshariya Sep 15 '11 at 11:42
this works only if android:singleLine="true" is provided... – rahul Oct 5 '11 at 6:10
1  
This code worked for me - although I had to make sure the android:textColor was set otherwise I was sometimes getting very dark text on my already dark background. This is apparently different from the non-scrolling default in my setup which was white text. – user379806 Apr 16 '12 at 14:34
yes this code will work when u will set android:singleLine="true" . – Android Killer Apr 4 at 12:15
android:ellipsize="marquee"

This only works when your TextView has the focus.

share|improve this answer
It also works when the TextView is selected. – Romain Guy Feb 2 '10 at 8:57
thanks ...can u give me a example please? – RBADS Feb 2 '10 at 11:33
He just did. You set android:ellipsize="marquee" on your TextView. It's all documented on developer.android.com by the way. – Matthias Feb 2 '10 at 12:17
 TextView tv = (TextView) this.findViewById(R.id.textview_marquee);  
 tv.setEllipsize(TruncateAt.MARQUEE);

 tv.setText("General Information... general information... General Information");
 tv.setSelected(true);
share|improve this answer

To get this to work, I had to use ALL three of the things (ellipsize, selected, and singleLine) mentioned already:

TextView tv = (TextView)findViewById(R.id.someTextView);
tv.setSelected(true);
tv.setEllipsize(TruncateAt.MARQUEE);
tv.setSingleLine(true):
share|improve this answer

As well as the XML settings identified by droidgren, my tests have shown that if the text you want to display is shorter than the width of the textview, then the marquee won't scroll at all. Possible solutions are to set the width of the view to a size smaller than the length of the text, or to concatenate the string to itself 2 or 3 times, with perhaps appropriate whitespace in-between so that the scrolling looks ok.

share|improve this answer

This will be equivalent to "end":

where = TruncateAt.END
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.