diff options
author | Leon Scroggins <scroggo@google.com> | 2010-12-15 16:03:59 -0500 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2010-12-15 16:03:59 -0500 |
commit | 7453ff26de5948543979f5921eb8917284e8e5c4 (patch) | |
tree | d1b29e17e94958286dfb0daadcb59dd7e554a5f9 /src | |
parent | 478b2442684004d6dfe192c0ae3dd04845b9f1b7 (diff) | |
download | packages_apps_Browser-7453ff26de5948543979f5921eb8917284e8e5c4.zip packages_apps_Browser-7453ff26de5948543979f5921eb8917284e8e5c4.tar.gz packages_apps_Browser-7453ff26de5948543979f5921eb8917284e8e5c4.tar.bz2 |
Request no title on addbookmark page.
Bug:3183399
Increase the height of the custom title.
Change-Id: I0fd3ebd3dfc1d7e623e108a0bc3957e9c2501c4c
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/browser/AddBookmarkPage.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/com/android/browser/AddBookmarkPage.java b/src/com/android/browser/AddBookmarkPage.java index 6e3f8bc..ecd038f 100644 --- a/src/com/android/browser/AddBookmarkPage.java +++ b/src/com/android/browser/AddBookmarkPage.java @@ -79,8 +79,6 @@ public class AddBookmarkPage extends Activity private static final int MAX_CRUMBS_SHOWN = 2; private final String LOGTAG = "Bookmarks"; - // Set to true to see the crash on the code I would like to run. - private final boolean DEBUG_CRASH = false; // IDs for the CursorLoaders that are used. private final int LOADER_ID_FOLDER_CONTENTS = 0; @@ -489,18 +487,13 @@ public class AddBookmarkPage extends Activity @Override protected void onCreate(Bundle icicle) { super.onCreate(icicle); - if (DEBUG_CRASH) { - requestWindowFeature(Window.FEATURE_NO_TITLE); - } + requestWindowFeature(Window.FEATURE_NO_TITLE); mMap = getIntent().getExtras(); setContentView(R.layout.browser_add_bookmark); Window window = getWindow(); - if (!DEBUG_CRASH) { - setTitle(""); - } String title = null; String url = null; |