0

I am have a textView that has a background and I want to scroll the text that it contains without scrolling the background

<TextView 
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_margin="5dp"
        android:background="@drawable/bg_image"
        android:gravity="center"
        android:text=" .... "
        android:textColor="@android:color/white" />
youssef abaza
  • 145
  • 1
  • 2
  • 9

1 Answers1

0

Just put your TextView into scroll view like described here: Android:Textview with vertical scrolling text . Then set your background resource as ScrollView's background and make TextView background transparent.

Community
  • 1
  • 1
amukhachov
  • 5,566
  • 1
  • 37
  • 55