diff options
-rw-r--r-- | res/layout/history_item.xml | 6 | ||||
-rw-r--r-- | src/com/android/browser/BookmarkItem.java | 10 | ||||
-rw-r--r-- | src/com/android/browser/BrowserHistoryPage.java | 1 |
3 files changed, 15 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" diff --git a/src/com/android/browser/BookmarkItem.java b/src/com/android/browser/BookmarkItem.java index 4e60073..8247c91 100644 --- a/src/com/android/browser/BookmarkItem.java +++ b/src/com/android/browser/BookmarkItem.java @@ -63,6 +63,16 @@ class BookmarkItem extends LinearLayout { item.mImageView.setImageDrawable(mImageView.getDrawable()); } + public void startMarquee() { + mTextView.setSelected(true); + mUrlText.setSelected(true); + } + + public void stopMarquee() { + mTextView.setSelected(false); + mUrlText.setSelected(false); + } + /** * Return the name assigned to this bookmark item. */ diff --git a/src/com/android/browser/BrowserHistoryPage.java b/src/com/android/browser/BrowserHistoryPage.java index 50bed36..264c465 100644 --- a/src/com/android/browser/BrowserHistoryPage.java +++ b/src/com/android/browser/BrowserHistoryPage.java @@ -674,6 +674,7 @@ public class BrowserHistoryPage extends Fragment item.getPaddingRight(), item.getPaddingBottom()); item.setFaviconBackground(mFaviconBackground); + item.startMarquee(); } else { item = (HistoryItem) convertView; } |