The code below creates an automatic horizontal scrolling textview:
While adding TextView to xml use
<TextView android:maxLines="1"
android:ellipsize="marquee"
android:scrollHorizontally="true"/>
Set the following properties of TextView in onCreate()
tv.setSelected(true);
tv.setHorizontallyScrolling(true);