Here is what worked for me:
<TextView android:layout_width="80px" android:layout_height="wrap_content" android:text="Some text" android:background="#88ff0000" android:singleLine="true" android:ellipsize="marquee"/>

Or with "..." at the end:
<TextView android:layout_width="80px" android:layout_height="wrap_content" android:text="Some text" android:background="#88ff0000" android:singleLine="true" />

When using android:lines does not work:
<TextView android:layout_width="80px" android:layout_height="wrap_content" android:text="Some text" android:background="#88ff0000" android:lines="1" android:ellipsize="marquee"/>

This is most likely a mistake, and I believe that I saw a bug report.
source share