X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Factivities%2FBookmarksDatabaseViewActivity.java;h=13fedf04d450dfbd1274426b189de562fe59edfc;hp=d084d5c68ffc7e977b00850396e74899c3f4d5ae;hb=1d656c562831f535aa33903d44198dd890393f4f;hpb=6ea3e4ebd779594b45ad8f51cc40761bb6d89030 diff --git a/app/src/main/java/com/stoutner/privacybrowser/activities/BookmarksDatabaseViewActivity.java b/app/src/main/java/com/stoutner/privacybrowser/activities/BookmarksDatabaseViewActivity.java index d084d5c6..13fedf04 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/activities/BookmarksDatabaseViewActivity.java +++ b/app/src/main/java/com/stoutner/privacybrowser/activities/BookmarksDatabaseViewActivity.java @@ -128,13 +128,13 @@ public class BookmarksDatabaseViewActivity extends AppCompatActivity implements // Set the view according to the theme. if (bottomAppBar) { // Set the content view. - setContentView(R.layout.bookmarks_databaseview_coordinatorlayout_bottom_appbar); + setContentView(R.layout.bookmarks_databaseview_bottom_appbar); } else { // `Window.FEATURE_ACTION_MODE_OVERLAY` makes the contextual action mode cover the support action bar. It must be requested before the content is set. supportRequestWindowFeature(Window.FEATURE_ACTION_MODE_OVERLAY); // Set the content view. - setContentView(R.layout.bookmarks_databaseview_coordinatorlayout_top_appbar); + setContentView(R.layout.bookmarks_databaseview_top_appbar); } // Get a handle for the toolbar.