diff options
-rw-r--r-- | res/layout/select_album_header.xml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/res/layout/select_album_header.xml b/res/layout/select_album_header.xml index 14bdf365..8f5883bf 100644 --- a/res/layout/select_album_header.xml +++ b/res/layout/select_album_header.xml @@ -30,7 +30,16 @@ android:textAppearance="?android:attr/textAppearanceLarge" android:textStyle="bold" android:singleLine="true" - android:ellipsize="end"/> + android:ellipsize="marquee" + android:marqueeRepeatLimit="marquee_forever" + android:scrollHorizontally="true" + android:focusable="true" + android:focusableInTouchMode="true"> + + <requestFocus android:focusable="true" + android:focusableInTouchMode="true" + android:duplicateParentState="true" /> + </TextView> <TextView android:text="This is the artist name" |