diff options
author | John Reck <jreck@google.com> | 2010-12-14 10:04:39 -0800 |
---|---|---|
committer | John Reck <jreck@google.com> | 2010-12-15 11:39:54 -0800 |
commit | 439c9a58765aa6aab95d55422ee61ea8360e912d (patch) | |
tree | f0c4cd1e144733d34825f370e0e52aa382aaa648 /src/com/android/browser/BrowserHistoryPage.java | |
parent | a50c446037eecaa2dcd83dab133bd9dc390ede69 (diff) | |
download | packages_apps_Browser-439c9a58765aa6aab95d55422ee61ea8360e912d.zip packages_apps_Browser-439c9a58765aa6aab95d55422ee61ea8360e912d.tar.gz packages_apps_Browser-439c9a58765aa6aab95d55422ee61ea8360e912d.tar.bz2 |
Spec update for Bookmark widget
Bug: 3286323
This updates both the assets for the bookmark widget and slightly
alters its behavior to match the updated spec. There are now two
touch targets in the header, one launches the browser and the other
launches the bookmarks view.
Change-Id: I1e8864983852af8421280b86421dea1d9ed4335e
Diffstat (limited to 'src/com/android/browser/BrowserHistoryPage.java')
-rw-r--r-- | src/com/android/browser/BrowserHistoryPage.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/browser/BrowserHistoryPage.java b/src/com/android/browser/BrowserHistoryPage.java index 18feee9..c623012 100644 --- a/src/com/android/browser/BrowserHistoryPage.java +++ b/src/com/android/browser/BrowserHistoryPage.java @@ -209,8 +209,8 @@ public class BrowserHistoryPage extends Fragment mEmptyView = root.findViewById(android.R.id.empty); // Start the loader - getLoaderManager().initLoader(LOADER_HISTORY, null, this); - getLoaderManager().initLoader(LOADER_MOST_VISITED, null, this); + getLoaderManager().restartLoader(LOADER_HISTORY, null, this); + getLoaderManager().restartLoader(LOADER_MOST_VISITED, null, this); // Register to receive icons in case they haven't all been loaded. CombinedBookmarkHistoryView.getIconListenerSet().addListener(mIconReceiver); |