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 created a textview that if the text is to long it will make it scrollable. However if you click on it or hold your finger on it, it will turn black like its been clicked. does anyone know the code to make it not click-able but still be able to scroll? thank you!

defined the rest in my xml:

 TextView Dark=(TextView)findViewById(R.id.Quote); 
 Dark.setMovementMethod(new ScrollingMovementMethod()) ;
share|improve this question
Can't you just remove the selector for the TextView? – AedonEtLIRA Jul 31 '12 at 22:21
I never made a selector xml for it though..? – Maddawg Jul 31 '12 at 22:27
It should still use a default selector -not necessarily an xml one either. – AedonEtLIRA Jul 31 '12 at 22:31
Im new to all of this, where would the default be? maybe I should just make a selector and keep all the states the same? – Maddawg Jul 31 '12 at 22:36

1 Answer

up vote 1 down vote accepted

Just disable the TextView (enabled=false) and it will still be scrollable. To overcome the gray text that shows by default in a disabled TextView, set the textColor explicitly.

<TextView
        ...
        android:enabled="false"
        android:textColor="#FFFFFFFF"
        ...
>
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.