diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-01-14 20:01:00 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-01-14 20:01:00 -0800 |
commit | d69727a894d32c23fae4e966f98d54634bb252f6 (patch) | |
tree | b0e1b18c330fc53cd916a214134dba205fead719 /res | |
parent | ea358d70f22f57211bda1e255119bf681136ee95 (diff) | |
download | dsub-d69727a894d32c23fae4e966f98d54634bb252f6.tar.gz dsub-d69727a894d32c23fae4e966f98d54634bb252f6.tar.bz2 dsub-d69727a894d32c23fae4e966f98d54634bb252f6.zip |
#49 Scroll album title if too long
Diffstat (limited to 'res')
-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" |