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.

I have text view in Footer and I Want to Scroll that text in Footer. Here is my snippet of my Code but that text will not be scrollable . Any body can help me Thanks in Advance My Code

public class Footer extends RelativeLayout{
    private TextView footer_TextVeiw;
    ImageView logout;
    public Footer(Context context, AttributeSet attrs) {
        super(context, attrs);
        String infService = Context.LAYOUT_INFLATER_SERVICE;
        LayoutInflater li = (LayoutInflater) getContext().getSystemService(infService);
        li.inflate(R.layout.footer_layout, this, true);
        footer_TextVeiw= (TextView) this.findViewById(R.id.text_Footer);  
        footer_TextVeiw.setSelected(true);    } }

My XML Layout

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Footer" >


    <TextView
        android:id="@+id/text_Footer"
        android:layout_width="fill_parent"
        android:layout_height="25dp"
        android:layout_alignParentBottom="true"
        android:background="#ECEFF5"
        android:layout_centerHorizontal="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:singleLine="true"
         android:scrollHorizontally="true" 
        android:ellipsize="marquee"
        android:text="@string/Footer"
         />


</RelativeLayout>
share|improve this question
possible duplicate : stackoverflow.com/questions/11184054/… – EvZ Feb 20 at 9:31

2 Answers

You can try attribute android:scrollbars="vertical" or Horizontal

share|improve this answer
Hi i tried with this but i cant get.. Simply the text oly getting as a view not in Scrollable – Manoj Kumar Feb 20 at 9:39
1  
When there is a overflow of text than only textView come with the scroll bar...try to provide fixed width for the TextView – Pragnani Feb 20 at 9:54
Thanks Pragnani its perfectly works for when we give certain fixed width for text view – Manoj Kumar Feb 20 at 12:47
1  
@ManojKumar welcome friend...you can accept this as answer if you think it helps you.. – Pragnani Feb 20 at 12:50

set

android:maxLines = "AN_INTEGER"

android:scrollbars = "vertical" 

in your TextView in xml file. and use

textView.setMovementMethod(new ScrollingMovementMethod())
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.