diff options
author | John Reck <jreck@google.com> | 2011-04-13 12:30:01 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2011-04-13 12:30:01 -0700 |
commit | 778bd2e3bafe338eaf38e790bf1cf97efff2c011 (patch) | |
tree | 1ff2f75e31389ea3fe3ca0e55db9c5557c8ba139 /res | |
parent | 172160e56773c2093d384b94da1f18b15c8de664 (diff) | |
download | packages_apps_Browser-778bd2e3bafe338eaf38e790bf1cf97efff2c011.zip packages_apps_Browser-778bd2e3bafe338eaf38e790bf1cf97efff2c011.tar.gz packages_apps_Browser-778bd2e3bafe338eaf38e790bf1cf97efff2c011.tar.bz2 |
Marquee history titles and urls
Bug: 2762388
Change-Id: I2b10e9b9f845e1c9b29571b8ddd792702ca07832
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/history_item.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/history_item.xml b/res/layout/history_item.xml index 3b3dd7a..f6076a0 100644 --- a/res/layout/history_item.xml +++ b/res/layout/history_item.xml @@ -42,7 +42,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" - android:ellipsize="end" + android:ellipsize="marquee" + android:marqueeRepeatLimit="marquee_forever" /> <TextView android:id="@+id/url" android:textAppearance="?android:attr/textAppearanceSmall" @@ -50,7 +51,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" - android:ellipsize="end" + android:ellipsize="marquee" + android:marqueeRepeatLimit="marquee_forever" /> </LinearLayout> <CheckBox android:id="@+id/star" |