2 * Copyright © 2016-2017 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
6 * Privacy Browser is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * Privacy Browser is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with Privacy Browser. If not, see <http://www.gnu.org/licenses/>.
20 package com.stoutner.privacybrowser.activities;
22 import android.app.Activity;
23 import android.content.Context;
24 import android.content.Intent;
25 import android.database.Cursor;
26 import android.graphics.Bitmap;
27 import android.graphics.BitmapFactory;
28 import android.graphics.Typeface;
29 import android.graphics.drawable.BitmapDrawable;
30 import android.graphics.drawable.Drawable;
31 import android.os.Bundle;
32 import android.support.design.widget.FloatingActionButton;
33 import android.support.design.widget.Snackbar;
34 import android.support.v4.app.NavUtils;
35 import android.support.v7.app.ActionBar;
36 import android.support.v7.app.AppCompatActivity;
37 import android.support.v7.app.AppCompatDialogFragment;
38 import android.support.v7.widget.Toolbar;
39 import android.util.SparseBooleanArray;
40 import android.view.ActionMode;
41 import android.view.Menu;
42 import android.view.MenuItem;
43 import android.view.View;
44 import android.view.ViewGroup;
45 import android.widget.AbsListView;
46 import android.widget.AdapterView;
47 import android.widget.CursorAdapter;
48 import android.widget.EditText;
49 import android.widget.ImageView;
50 import android.widget.ListView;
51 import android.widget.RadioButton;
52 import android.widget.TextView;
54 import com.stoutner.privacybrowser.dialogs.CreateBookmarkDialog;
55 import com.stoutner.privacybrowser.dialogs.CreateBookmarkFolderDialog;
56 import com.stoutner.privacybrowser.dialogs.EditBookmarkDialog;
57 import com.stoutner.privacybrowser.dialogs.EditBookmarkFolderDialog;
58 import com.stoutner.privacybrowser.dialogs.MoveToFolderDialog;
59 import com.stoutner.privacybrowser.R;
60 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
62 import java.io.ByteArrayOutputStream;
64 public class BookmarksActivity extends AppCompatActivity implements CreateBookmarkDialog.CreateBookmarkListener, CreateBookmarkFolderDialog.CreateBookmarkFolderListener, EditBookmarkDialog.EditBookmarkListener, EditBookmarkFolderDialog.EditBookmarkFolderListener,
65 MoveToFolderDialog.MoveToFolderListener {
67 // `bookmarksDatabaseHelper` is public static so it can be accessed from `EditBookmarkDialog` and `MoveToFolderDialog`. It is also used in `onCreate()`,
68 // `onCreateBookmarkCreate()`, `updateBookmarksListView()`, and `updateBookmarksListViewExcept()`.
69 public static BookmarksDatabaseHelper bookmarksDatabaseHelper;
71 // `currentFolder` is public static so it can be accessed from `MoveToFolderDialog`.
72 // It is used in `onCreate`, `onOptionsItemSelected()`, `onCreateBookmarkCreate`, `onCreateBookmarkFolderCreate`, and `onEditBookmarkSave`.
73 public static String currentFolder;
75 // `checkedItemIds` is public static so it can be accessed from `EditBookmarkDialog`, `EditBookmarkFolderDialog`, and `MoveToFolderDialog`.
76 // It is also used in `onActionItemClicked`.
77 public static long[] checkedItemIds;
80 // `bookmarksListView` is used in `onCreate()`, `updateBookmarksListView()`, and `updateBookmarksListViewExcept()`.
81 private ListView bookmarksListView;
83 // `contextualActionMode` is used in `onCreate()` and `onEditBookmarkSave()`.
84 private ActionMode contextualActionMode;
86 // `selectedBookmarkPosition` is used in `onCreate()` and `onEditBookmarkSave()`.
87 private int selectedBookmarkPosition;
89 // `appBar` is used in `onCreate()` and `updateBookmarksListView()`.
90 private ActionBar appBar;
92 // `bookmarksCursor` is used in `onCreate()`, `updateBookmarksListView()`, and `updateBookmarksListViewExcept()`.
93 private Cursor bookmarksCursor;
95 // `oldFolderName` is used in `onCreate()` and `onEditBookmarkFolderSave()`.
96 private String oldFolderNameString;
99 protected void onCreate(Bundle savedInstanceState) {
100 // Set the activity theme.
101 if (MainWebViewActivity.darkTheme) {
102 setTheme(R.style.PrivacyBrowserDark_SecondaryActivity);
104 setTheme(R.style.PrivacyBrowserLight_SecondaryActivity);
107 // Run the default commands.
108 super.onCreate(savedInstanceState);
110 // Set the content view.
111 setContentView(R.layout.bookmarks_coordinatorlayout);
113 // Use the `SupportActionBar` from `android.support.v7.app.ActionBar` until the minimum API is >= 21.
114 final Toolbar bookmarksAppBar = (Toolbar) findViewById(R.id.bookmarks_toolbar);
115 setSupportActionBar(bookmarksAppBar);
117 // Display the home arrow on `SupportActionBar`.
118 appBar = getSupportActionBar();
119 assert appBar != null;// This assert removes the incorrect warning in Android Studio on the following line that `appBar` might be null.
120 appBar.setDisplayHomeAsUpEnabled(true);
123 // Initialize the database helper and the `ListView`. `this` specifies the context. The two `nulls` do not specify the database name or a `CursorFactory`.
124 // The `0` specifies a database version, but that is ignored and set instead using a constant in `BookmarksDatabaseHelper`.
125 bookmarksDatabaseHelper = new BookmarksDatabaseHelper(this, null, null, 0);
126 bookmarksListView = (ListView) findViewById(R.id.bookmarks_listview);
128 // Set currentFolder to the home folder, which is `""` in the database.
131 // Display the bookmarks in the ListView.
132 updateBookmarksListView(currentFolder);
134 // Set a listener so that tapping a list item loads the URL. We need to store the activity in a variable so that we can return to the parent activity after loading the URL.
135 final Activity bookmarksActivity = this;
136 bookmarksListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
138 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
139 // Convert the id from long to int to match the format of the bookmarks database.
140 int databaseID = (int) id;
142 // Get the bookmark `Cursor` for this ID and move it to the first row.
143 Cursor bookmarkCursor = bookmarksDatabaseHelper.getBookmarkCursor(databaseID);
144 bookmarkCursor.moveToFirst();
146 // If the bookmark is a folder load its contents into the ListView.
147 if (bookmarkCursor.getInt(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) {
148 // Update `currentFolder`.
149 currentFolder = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
151 // Reload the ListView with `currentFolder`.
152 updateBookmarksListView(currentFolder);
153 } else { // Load the URL into `mainWebView`.
154 // Get the bookmark URL and assign it to formattedUrlString. `mainWebView` will automatically reload when `BookmarksActivity` closes.
155 MainWebViewActivity.formattedUrlString = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL));
157 NavUtils.navigateUpFromSameTask(bookmarksActivity);
160 // Close the `Cursor`.
161 bookmarkCursor.close();
165 // `MultiChoiceModeListener` handles long clicks.
166 bookmarksListView.setMultiChoiceModeListener(new AbsListView.MultiChoiceModeListener() {
167 // `moveBookmarkUpMenuItem` is used in `onCreateActionMode()` and `onItemCheckedStateChanged`.
168 MenuItem moveBookmarkUpMenuItem;
170 // `moveBookmarkDownMenuItem` is used in `onCreateActionMode()` and `onItemCheckedStateChanged`.
171 MenuItem moveBookmarkDownMenuItem;
173 // `editBookmarkMenuItem` is used in `onCreateActionMode()` and `onItemCheckedStateChanged`.
174 MenuItem editBookmarkMenuItem;
176 // `selectAllBookmarks` is used in `onCreateActionMode()` and `onItemCheckedStateChanges`.
177 MenuItem selectAllBookmarksMenuItem;
180 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
181 // Inflate the menu for the contextual app bar and set the title.
182 getMenuInflater().inflate(R.menu.bookmarks_context_menu, menu);
185 if (currentFolder.isEmpty()) {
186 // Use `R.string.bookmarks` if we are in the home folder.
187 mode.setTitle(R.string.bookmarks);
188 } else { // Use the current folder name as the title.
189 mode.setTitle(currentFolder);
192 // Get a handle for MenuItems we need to selectively disable.
193 moveBookmarkUpMenuItem = menu.findItem(R.id.move_bookmark_up);
194 moveBookmarkDownMenuItem = menu.findItem(R.id.move_bookmark_down);
195 editBookmarkMenuItem = menu.findItem(R.id.edit_bookmark);
196 selectAllBookmarksMenuItem = menu.findItem(R.id.context_menu_select_all_bookmarks);
198 // Store `contextualActionMode` so we can close it programatically.
199 contextualActionMode = mode;
205 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
206 // Get a handle for the move to folder menu item.
207 MenuItem moveToFolderMenuItem = menu.findItem(R.id.move_to_folder);
209 // Get a `Cursor` with all of the folders.
210 Cursor folderCursor = bookmarksDatabaseHelper.getAllFoldersCursor();
212 // Enable the move to folder menu item if at least one folder exists.
213 moveToFolderMenuItem.setVisible(folderCursor.getCount() > 0);
215 // `return true` indicates that the menu has been updated.
220 public void onItemCheckedStateChanged(ActionMode mode, int position, long id, boolean checked) {
221 // Get an array of the selected bookmarks.
222 long[] selectedBookmarksLongArray = bookmarksListView.getCheckedItemIds();
224 // Calculate the number of selected bookmarks.
225 int numberOfSelectedBookmarks = selectedBookmarksLongArray.length;
227 // Adjust the `mode` and the menu for the number of selected bookmarks.
228 if (numberOfSelectedBookmarks == 0) {
230 } else if (numberOfSelectedBookmarks == 1) {
231 // List the number of selected bookmarks in the subtitle.
232 mode.setSubtitle(getString(R.string.one_selected));
234 // Show the `Move Up`, `Move Down`, and `Edit` options.
235 moveBookmarkUpMenuItem.setVisible(true);
236 moveBookmarkDownMenuItem.setVisible(true);
237 editBookmarkMenuItem.setVisible(true);
239 // Get the database IDs for the bookmarks.
240 int selectedBookmarkDatabaseId = (int) selectedBookmarksLongArray[0];
241 int firstBookmarkDatabaseId = (int) bookmarksListView.getItemIdAtPosition(0);
242 // bookmarksListView is 0 indexed.
243 int lastBookmarkDatabaseId = (int) bookmarksListView.getItemIdAtPosition(bookmarksListView.getCount() - 1);
245 // Disable `moveBookmarkUpMenuItem` if the selected bookmark is at the top of the ListView.
246 if (selectedBookmarkDatabaseId == firstBookmarkDatabaseId) {
247 moveBookmarkUpMenuItem.setEnabled(false);
248 moveBookmarkUpMenuItem.setIcon(R.drawable.move_up_disabled);
249 } else { // Otherwise enable `moveBookmarkUpMenuItem`.
250 moveBookmarkUpMenuItem.setEnabled(true);
252 // Set the icon according to the theme.
253 if (MainWebViewActivity.darkTheme) {
254 moveBookmarkUpMenuItem.setIcon(R.drawable.move_up_enabled_dark);
256 moveBookmarkUpMenuItem.setIcon(R.drawable.move_up_enabled_light);
260 // Disable `moveBookmarkDownMenuItem` if the selected bookmark is at the bottom of the ListView.
261 if (selectedBookmarkDatabaseId == lastBookmarkDatabaseId) {
262 moveBookmarkDownMenuItem.setEnabled(false);
263 moveBookmarkDownMenuItem.setIcon(R.drawable.move_down_disabled);
264 } else { // Otherwise enable `moveBookmarkDownMenuItem`.
265 moveBookmarkDownMenuItem.setEnabled(true);
267 // Set the icon according to the theme.
268 if (MainWebViewActivity.darkTheme) {
269 moveBookmarkDownMenuItem.setIcon(R.drawable.move_down_enabled_dark);
271 moveBookmarkDownMenuItem.setIcon(R.drawable.move_down_enabled_light);
274 } else { // More than one bookmark is selected.
275 // List the number of selected bookmarks in the subtitle.
276 mode.setSubtitle(numberOfSelectedBookmarks + " " + getString(R.string.selected));
278 // Hide non-applicable `MenuItems`.
279 moveBookmarkUpMenuItem.setVisible(false);
280 moveBookmarkDownMenuItem.setVisible(false);
281 editBookmarkMenuItem.setVisible(false);
284 // Do not show `Select All` if all the bookmarks are already checked.
285 if (bookmarksListView.getCheckedItemIds().length == bookmarksListView.getCount()) {
286 selectAllBookmarksMenuItem.setVisible(false);
288 selectAllBookmarksMenuItem.setVisible(true);
293 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
294 // Get the menu item ID.
295 int menuItemId = item.getItemId();
297 // Instantiate the common variables.
298 int numberOfBookmarks;
299 int selectedBookmarkNewPosition;
300 SparseBooleanArray bookmarkPositionSparseBooleanArray;
302 switch (menuItemId) {
303 case R.id.move_bookmark_up:
304 // Get the array of checked bookmarks.
305 bookmarkPositionSparseBooleanArray = bookmarksListView.getCheckedItemPositions();
307 // Store the position of the selected bookmark.
308 selectedBookmarkPosition = bookmarkPositionSparseBooleanArray.keyAt(0);
310 // Initialize `selectedBookmarkNewPosition`.
311 selectedBookmarkNewPosition = 0;
313 // Iterate through the bookmarks.
314 for (int i = 0; i < bookmarksListView.getCount(); i++) {
315 // Get the database ID for the current bookmark.
316 int currentBookmarkDatabaseId = (int) bookmarksListView.getItemIdAtPosition(i);
318 // Update the display order for the current bookmark.
319 if (i == selectedBookmarkPosition) { // The current bookmark is the selected bookmark.
320 // Move the current bookmark up one.
321 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i - 1);
322 selectedBookmarkNewPosition = i - 1;
323 } else if ((i + 1) == selectedBookmarkPosition){ // The current bookmark is immediately above the selected bookmark.
324 // Move the current bookmark down one.
325 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i + 1);
326 } else { // The current bookmark is not changing positions.
327 // Move `bookmarksCursor` to the current bookmark position.
328 bookmarksCursor.moveToPosition(i);
330 // Update the display order only if it is not correct in the database.
331 if (bookmarksCursor.getInt(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.DISPLAY_ORDER)) != i) {
332 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i);
337 // Refresh the ListView.
338 updateBookmarksListView(currentFolder);
340 // Select the previously selected bookmark in the new location.
341 bookmarksListView.setItemChecked(selectedBookmarkNewPosition, true);
343 // Scroll `bookmarksListView` to five items above `selectedBookmarkNewPosition`.
344 bookmarksListView.setSelection(selectedBookmarkNewPosition - 5);
348 case R.id.move_bookmark_down:
349 // Get the array of checked bookmarks.
350 bookmarkPositionSparseBooleanArray = bookmarksListView.getCheckedItemPositions();
352 // Store the position of the selected bookmark.
353 selectedBookmarkPosition = bookmarkPositionSparseBooleanArray.keyAt(0);
355 // Initialize `selectedBookmarkNewPosition`.
356 selectedBookmarkNewPosition = 0;
358 // Iterate through the bookmarks.
359 for (int i = 0; i <bookmarksListView.getCount(); i++) {
360 // Get the database ID for the current bookmark.
361 int currentBookmarkDatabaseId = (int) bookmarksListView.getItemIdAtPosition(i);
363 // Update the display order for the current bookmark.
364 if (i == selectedBookmarkPosition) { // The current bookmark is the selected bookmark.
365 // Move the current bookmark down one.
366 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i + 1);
367 selectedBookmarkNewPosition = i + 1;
368 } else if ((i - 1) == selectedBookmarkPosition) { // The current bookmark is immediately below the selected bookmark.
369 // Move the bookmark below the selected bookmark up one.
370 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i - 1);
371 } else { // The current bookmark is not changing positions.
372 // Move `bookmarksCursor` to the current bookmark position.
373 bookmarksCursor.moveToPosition(i);
375 // Update the display order only if it is not correct in the database.
376 if (bookmarksCursor.getInt(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.DISPLAY_ORDER)) != i) {
377 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i);
382 // Refresh the ListView.
383 updateBookmarksListView(currentFolder);
385 // Select the previously selected bookmark in the new location.
386 bookmarksListView.setItemChecked(selectedBookmarkNewPosition, true);
388 // Scroll `bookmarksListView` to five items above `selectedBookmarkNewPosition`.
389 bookmarksListView.setSelection(selectedBookmarkNewPosition - 5);
392 case R.id.move_to_folder:
393 // Store `checkedItemIds` for use by the `AlertDialog`.
394 checkedItemIds = bookmarksListView.getCheckedItemIds();
396 // Show the `MoveToFolderDialog` `AlertDialog` and name the instance `@string/move_to_folder
397 AppCompatDialogFragment moveToFolderDialog = new MoveToFolderDialog();
398 moveToFolderDialog.show(getSupportFragmentManager(), getResources().getString(R.string.move_to_folder));
401 case R.id.edit_bookmark:
402 // Get the array of checked bookmarks.
403 bookmarkPositionSparseBooleanArray = bookmarksListView.getCheckedItemPositions();
405 // Store the position of the selected bookmark.
406 selectedBookmarkPosition = bookmarkPositionSparseBooleanArray.keyAt(0);
408 // Move to the selected database ID and find out if it is a folder.
409 bookmarksCursor.moveToPosition(selectedBookmarkPosition);
410 boolean isFolder = (bookmarksCursor.getInt(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1);
412 // Store `checkedItemIds` for use by the `AlertDialog`.
413 checkedItemIds = bookmarksListView.getCheckedItemIds();
416 // Save the current folder name.
417 oldFolderNameString = bookmarksCursor.getString(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
419 // Show the `EditBookmarkFolderDialog` `AlertDialog` and name the instance `@string/edit_folder`.
420 AppCompatDialogFragment editFolderDialog = new EditBookmarkFolderDialog();
421 editFolderDialog.show(getSupportFragmentManager(), getResources().getString(R.string.edit_folder));
423 // Show the `EditBookmarkDialog` `AlertDialog` and name the instance `@string/edit_bookmark`.
424 AppCompatDialogFragment editBookmarkDialog = new EditBookmarkDialog();
425 editBookmarkDialog.show(getSupportFragmentManager(), getResources().getString(R.string.edit_bookmark));
429 case R.id.delete_bookmark:
430 // Get an array of the selected rows.
431 final long[] selectedBookmarksLongArray = bookmarksListView.getCheckedItemIds();
433 // Get the array of checked bookmarks.
434 bookmarkPositionSparseBooleanArray = bookmarksListView.getCheckedItemPositions();
436 // Store the position of the first selected bookmark.
437 selectedBookmarkPosition = bookmarkPositionSparseBooleanArray.keyAt(0);
439 updateBookmarksListViewExcept(selectedBookmarksLongArray, currentFolder);
441 // Scroll to where the first deleted bookmark was located.
442 bookmarksListView.setSelection(selectedBookmarkPosition - 5);
444 // Create `snackbarMessage`.
445 String snackbarMessage;
447 // Determine how many items are in the array and prepare an appropriate Snackbar message.
448 if (selectedBookmarksLongArray.length == 1) {
449 snackbarMessage = getString(R.string.one_bookmark_deleted);
451 snackbarMessage = selectedBookmarksLongArray.length + " " + getString(R.string.bookmarks_deleted);
455 Snackbar.make(findViewById(R.id.bookmarks_coordinatorlayout), snackbarMessage, Snackbar.LENGTH_LONG)
456 .setAction(R.string.undo, new View.OnClickListener() {
458 public void onClick(View view) {
459 // Do nothing because everything will be handled by `onDismissed()` below.
462 .addCallback(new Snackbar.Callback() {
464 public void onDismissed(Snackbar snackbar, int event) {
466 // The user pushed the `Undo` button.
467 case Snackbar.Callback.DISMISS_EVENT_ACTION:
468 // Refresh the ListView to show the rows again.
469 updateBookmarksListView(currentFolder);
471 // Scroll to where the first deleted bookmark was located.
472 bookmarksListView.setSelection(selectedBookmarkPosition - 5);
475 // The `Snackbar` was dismissed without the `Undo` button being pushed.
477 // Delete each selected row.
478 for (long databaseIdLong : selectedBookmarksLongArray) {
479 // Convert `databaseIdLong` to an int.
480 int databaseIdInt = (int) databaseIdLong;
482 if (bookmarksDatabaseHelper.isFolder(databaseIdInt)) {
483 deleteBookmarkFolderContents(databaseIdInt);
486 // Delete `databaseIdInt`.
487 bookmarksDatabaseHelper.deleteBookmark(databaseIdInt);
490 // Update the display order.
491 for (int i = 0; i < bookmarksListView.getCount(); i++) {
492 // Get the database ID for the current bookmark.
493 int currentBookmarkDatabaseId = (int) bookmarksListView.getItemIdAtPosition(i);
495 // Move `bookmarksCursor` to the current bookmark position.
496 bookmarksCursor.moveToPosition(i);
498 // Update the display order only if it is not correct in the database.
499 if (bookmarksCursor.getInt(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.DISPLAY_ORDER)) != i) {
500 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(currentBookmarkDatabaseId, i);
509 // Close the contextual app bar.
513 case R.id.context_menu_select_all_bookmarks:
514 numberOfBookmarks = bookmarksListView.getCount();
516 for (int i = 0; i < numberOfBookmarks; i++) {
517 bookmarksListView.setItemChecked(i, true);
521 // Consume the click.
526 public void onDestroyActionMode(ActionMode mode) {
531 // Set a FloatingActionButton for creating new bookmarks.
532 FloatingActionButton createBookmarkFAB = (FloatingActionButton) findViewById(R.id.create_bookmark_fab);
533 createBookmarkFAB.setOnClickListener(new View.OnClickListener() {
535 public void onClick(View view) {
536 // Show the `CreateBookmarkDialog` `AlertDialog` and name the instance `@string/create_bookmark`.
537 AppCompatDialogFragment createBookmarkDialog = new CreateBookmarkDialog();
538 createBookmarkDialog.show(getSupportFragmentManager(), getResources().getString(R.string.create_bookmark));
544 public boolean onCreateOptionsMenu(Menu menu) {
546 getMenuInflater().inflate(R.menu.bookmarks_options_menu, menu);
553 public boolean onOptionsItemSelected(MenuItem menuItem) {
554 // Get the ID of the `MenuItem` that was selected.
555 int menuItemId = menuItem.getItemId();
557 switch (menuItemId) {
558 case android.R.id.home: // The home arrow is identified as `android.R.id.home`, not just `R.id.home`.
559 if (currentFolder.isEmpty()) { // Exit BookmarksActivity if currently in the home folder.
560 NavUtils.navigateUpFromSameTask(this);
561 } else { // Navigate up one folder.
562 // Place the former parent folder in `currentFolder`.
563 currentFolder = bookmarksDatabaseHelper.getParentFolder(currentFolder);
565 // Update `bookmarksListView`.
566 updateBookmarksListView(currentFolder);
570 case R.id.create_folder:
571 // Show the `CreateBookmarkFolderDialog` `AlertDialog` and name the instance `@string/create_folder`.
572 AppCompatDialogFragment createBookmarkFolderDialog = new CreateBookmarkFolderDialog();
573 createBookmarkFolderDialog.show(getSupportFragmentManager(), getResources().getString(R.string.create_folder));
576 case R.id.options_menu_select_all_bookmarks:
577 int numberOfBookmarks = bookmarksListView.getCount();
579 for (int i = 0; i < numberOfBookmarks; i++) {
580 bookmarksListView.setItemChecked(i, true);
584 case R.id.bookmarks_database_view:
585 // Launch `BookmarksDatabaseViewActivity`.
586 Intent bookmarksDatabaseViewIntent = new Intent(this, BookmarksDatabaseViewActivity.class);
587 startActivity(bookmarksDatabaseViewIntent);
594 public void onBackPressed() {
595 if (currentFolder.isEmpty()) { // Exit BookmarksActivity if currently in the home folder.
596 super.onBackPressed();
597 } else { // Navigate up one folder.
598 // Place the former parent folder in `currentFolder`.
599 currentFolder = bookmarksDatabaseHelper.getParentFolder(currentFolder);
601 // Reload the `ListView`.
602 updateBookmarksListView(currentFolder);
607 public void onCreateBookmark(AppCompatDialogFragment dialogFragment) {
608 // Get the `EditTexts` from the `dialogFragment`.
609 EditText createBookmarkNameEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.create_bookmark_name_edittext);
610 EditText createBookmarkUrlEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.create_bookmark_url_edittext);
612 // Extract the strings from the `EditTexts`.
613 String bookmarkNameString = createBookmarkNameEditText.getText().toString();
614 String bookmarkUrlString = createBookmarkUrlEditText.getText().toString();
616 // Convert the favoriteIcon Bitmap to a byte array.
617 ByteArrayOutputStream favoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
618 // `0` is for lossless compression (the only option for a PNG).
619 MainWebViewActivity.favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, favoriteIconByteArrayOutputStream);
620 byte[] favoriteIconByteArray = favoriteIconByteArrayOutputStream.toByteArray();
622 // Display the new bookmark below the current items in the (0 indexed) list.
623 int newBookmarkDisplayOrder = bookmarksListView.getCount();
625 // Create the bookmark.
626 bookmarksDatabaseHelper.createBookmark(bookmarkNameString, bookmarkUrlString, newBookmarkDisplayOrder, currentFolder, favoriteIconByteArray);
628 // Refresh the `ListView`. `setSelection` scrolls to the bottom of the list.
629 updateBookmarksListView(currentFolder);
630 bookmarksListView.setSelection(newBookmarkDisplayOrder);
634 public void onCreateBookmarkFolder(AppCompatDialogFragment dialogFragment) {
635 // Get `create_folder_name_edit_text` and extract the string.
636 EditText createFolderNameEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.create_folder_name_edittext);
637 String folderNameString = createFolderNameEditText.getText().toString();
639 // Get the new folder icon `Bitmap`.
640 RadioButton defaultFolderIconRadioButton = (RadioButton) dialogFragment.getDialog().findViewById(R.id.create_folder_default_icon_radiobutton);
641 Bitmap folderIconBitmap;
642 if (defaultFolderIconRadioButton.isChecked()) {
643 // Get the default folder icon `ImageView` from the `Dialog` and convert it to a `Bitmap`.
644 ImageView folderIconImageView = (ImageView) dialogFragment.getDialog().findViewById(R.id.create_folder_default_icon);
645 Drawable folderIconDrawable = folderIconImageView.getDrawable();
646 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
647 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
648 } else { // Assign `favoriteIcon` from the `WebView`.
649 folderIconBitmap = MainWebViewActivity.favoriteIconBitmap;
652 // Convert `folderIconBitmap` to a byte array. `0` is for lossless compression (the only option for a PNG).
653 ByteArrayOutputStream folderIconByteArrayOutputStream = new ByteArrayOutputStream();
654 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, folderIconByteArrayOutputStream);
655 byte[] folderIconByteArray = folderIconByteArrayOutputStream.toByteArray();
657 // Move all the bookmarks down one in the display order.
658 for (int i = 0; i < bookmarksListView.getCount(); i++) {
659 int databaseId = (int) bookmarksListView.getItemIdAtPosition(i);
660 bookmarksDatabaseHelper.updateBookmarkDisplayOrder(databaseId, i + 1);
663 // Create the folder, placing it at the top of the ListView
664 bookmarksDatabaseHelper.createFolder(folderNameString, 0, currentFolder, folderIconByteArray);
666 // Refresh the ListView.
667 updateBookmarksListView(currentFolder);
671 public void onSaveEditBookmark(AppCompatDialogFragment dialogFragment) {
672 // Get a long array with the the databaseId of the selected bookmark and convert it to an `int`.
673 long[] selectedBookmarksLongArray = bookmarksListView.getCheckedItemIds();
674 int selectedBookmarkDatabaseId = (int) selectedBookmarksLongArray[0];
676 // Get the `EditText`s from the `editBookmarkDialogFragment` and extract the strings.
677 EditText editBookmarkNameEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.edit_bookmark_name_edittext);
678 String bookmarkNameString = editBookmarkNameEditText.getText().toString();
679 EditText editBookmarkUrlEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.edit_bookmark_url_edittext);
680 String bookmarkUrlString = editBookmarkUrlEditText.getText().toString();
682 // Get `edit_bookmark_current_icon_radiobutton`.
683 RadioButton currentBookmarkIconRadioButton = (RadioButton) dialogFragment.getDialog().findViewById(R.id.edit_bookmark_current_icon_radiobutton);
685 if (currentBookmarkIconRadioButton.isChecked()) { // Update the bookmark without changing the favorite icon.
686 bookmarksDatabaseHelper.updateBookmark(selectedBookmarkDatabaseId, bookmarkNameString, bookmarkUrlString);
687 } else { // Update the bookmark using the `WebView` favorite icon.
688 ByteArrayOutputStream newFavoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
689 MainWebViewActivity.favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFavoriteIconByteArrayOutputStream);
690 byte[] newFavoriteIconByteArray = newFavoriteIconByteArrayOutputStream.toByteArray();
692 // Update the bookmark and the favorite icon.
693 bookmarksDatabaseHelper.updateBookmark(selectedBookmarkDatabaseId, bookmarkNameString, bookmarkUrlString, newFavoriteIconByteArray);
696 // Close the contextual action mode.
697 contextualActionMode.finish();
699 // Refresh the `ListView`. `setSelection` scrolls to the position of the bookmark that was edited.
700 updateBookmarksListView(currentFolder);
701 bookmarksListView.setSelection(selectedBookmarkPosition);
705 public void onSaveEditBookmarkFolder(AppCompatDialogFragment dialogFragment) {
706 // Get the new folder name.
707 EditText editFolderNameEditText = (EditText) dialogFragment.getDialog().findViewById(R.id.edit_folder_name_edittext);
708 String newFolderNameString = editFolderNameEditText.getText().toString();
710 // Check to see if the new folder name is unique.
711 Cursor bookmarkFolderCursor = bookmarksDatabaseHelper.getFolderCursor(newFolderNameString);
712 int existingFoldersWithNewName = bookmarkFolderCursor.getCount();
713 bookmarkFolderCursor.close();
714 if ( ((existingFoldersWithNewName == 0) || newFolderNameString.equals(oldFolderNameString)) && !newFolderNameString.isEmpty()) {
715 // Get a long array with the the database ID of the selected folder and convert it to an `int`.
716 long[] selectedFolderLongArray = bookmarksListView.getCheckedItemIds();
717 int selectedFolderDatabaseId = (int) selectedFolderLongArray[0];
719 // Get the `RadioButtons` from the `Dialog`.
720 RadioButton currentFolderIconRadioButton = (RadioButton) dialogFragment.getDialog().findViewById(R.id.edit_folder_current_icon_radiobutton);
721 RadioButton defaultFolderIconRadioButton = (RadioButton) dialogFragment.getDialog().findViewById(R.id.edit_folder_default_icon_radiobutton);
723 // Check if the favorite icon has changed.
724 if (currentFolderIconRadioButton.isChecked()) {
725 // Update the folder name if it has changed without modifying the favorite icon.
726 if (!newFolderNameString.equals(oldFolderNameString)) {
727 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString);
729 // Refresh the `ListView`. `setSelection` scrolls to the position of the folder that was edited.
730 updateBookmarksListView(currentFolder);
731 bookmarksListView.setSelection(selectedBookmarkPosition);
733 } else { // Update the folder icon.
734 // Get the new folder icon `Bitmap`.
735 Bitmap folderIconBitmap;
736 if (defaultFolderIconRadioButton.isChecked()) {
737 // Get the default folder icon `ImageView` from the `Drawable` and convert it to a `Bitmap`.
738 ImageView folderIconImageView = (ImageView) dialogFragment.getDialog().findViewById(R.id.edit_folder_default_icon);
739 Drawable folderIconDrawable = folderIconImageView.getDrawable();
740 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
741 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
742 } else { // Get the web page icon `ImageView` from the `Dialog`.
743 folderIconBitmap = MainWebViewActivity.favoriteIconBitmap;
746 // Convert the folder `Bitmap` to a byte array. `0` is for lossless compression (the only option for a PNG).
747 ByteArrayOutputStream folderIconByteArrayOutputStream = new ByteArrayOutputStream();
748 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, folderIconByteArrayOutputStream);
749 byte[] folderIconByteArray = folderIconByteArrayOutputStream.toByteArray();
751 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString, folderIconByteArray);
753 // Refresh the `ListView`. `setSelection` scrolls to the position of the folder that was edited.
754 updateBookmarksListView(currentFolder);
755 bookmarksListView.setSelection(selectedBookmarkPosition);
757 } else { // Don't edit the folder because the new name is not unique.
758 String cannot_rename_folder = getResources().getString(R.string.cannot_save_folder) + " \"" + newFolderNameString + "\"";
759 Snackbar.make(findViewById(R.id.bookmarks_coordinatorlayout), cannot_rename_folder, Snackbar.LENGTH_INDEFINITE).show();
762 // Close the contextual action mode.
763 contextualActionMode.finish();
767 public void onMoveToFolder(AppCompatDialogFragment dialogFragment) {
768 // Get the new folder database id.
769 ListView folderListView = (ListView) dialogFragment.getDialog().findViewById(R.id.move_to_folder_listview);
770 long[] newFolderLongArray = folderListView.getCheckedItemIds();
772 // Get the new folder database ID.
773 int newFolderDatabaseId = (int) newFolderLongArray[0];
775 // Instantiate `newFolderName`.
776 String newFolderName;
778 if (newFolderDatabaseId == 0) {
779 // The new folder is the home folder, represented as `""` in the database.
782 // Get the new folder name from the database.
783 newFolderName = bookmarksDatabaseHelper.getFolderName(newFolderDatabaseId);
786 // Get a long array with the the database ID of the selected bookmarks.
787 long[] selectedBookmarksLongArray = bookmarksListView.getCheckedItemIds();
788 for (long databaseIdLong : selectedBookmarksLongArray) {
789 // Get `databaseIdInt` for each selected bookmark.
790 int databaseIdInt = (int) databaseIdLong;
792 // Move the selected bookmark to the new folder.
793 bookmarksDatabaseHelper.moveToFolder(databaseIdInt, newFolderName);
796 // Refresh the `ListView`.
797 updateBookmarksListView(currentFolder);
799 // Close the contextual app bar.
800 contextualActionMode.finish();
803 private void updateBookmarksListView(String folderName) {
804 // Get a `Cursor` with the current contents of the bookmarks database.
805 bookmarksCursor = bookmarksDatabaseHelper.getAllBookmarksCursorByDisplayOrder(folderName);
807 // Setup `bookmarksCursorAdapter` with `this` context. `false` disables `autoRequery`.
808 CursorAdapter bookmarksCursorAdapter = new CursorAdapter(this, bookmarksCursor, false) {
810 public View newView(Context context, Cursor cursor, ViewGroup parent) {
811 // Inflate the individual item layout. `false` does not attach it to the root.
812 return getLayoutInflater().inflate(R.layout.bookmarks_item_linearlayout, parent, false);
816 public void bindView(View view, Context context, Cursor cursor) {
817 // Get the favorite icon byte array from the `Cursor`.
818 byte[] favoriteIconByteArray = cursor.getBlob(cursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
820 // Convert the byte array to a `Bitmap` beginning at the first byte and ending at the last.
821 Bitmap favoriteIconBitmap = BitmapFactory.decodeByteArray(favoriteIconByteArray, 0, favoriteIconByteArray.length);
823 // Display the bitmap in `bookmarkFavoriteIcon`.
824 ImageView bookmarkFavoriteIcon = (ImageView) view.findViewById(R.id.bookmark_favorite_icon);
825 bookmarkFavoriteIcon.setImageBitmap(favoriteIconBitmap);
828 // Get the bookmark name from the cursor and display it in `bookmarkNameTextView`.
829 String bookmarkNameString = cursor.getString(cursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
830 TextView bookmarkNameTextView = (TextView) view.findViewById(R.id.bookmark_name);
831 bookmarkNameTextView.setText(bookmarkNameString);
833 // Make the font bold for folders.
834 if (cursor.getInt(cursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) {
835 bookmarkNameTextView.setTypeface(Typeface.DEFAULT_BOLD);
836 } else { // Reset the font to default for normal bookmarks.
837 bookmarkNameTextView.setTypeface(Typeface.DEFAULT);
842 // Update the ListView.
843 bookmarksListView.setAdapter(bookmarksCursorAdapter);
845 // Set the AppBar title.
846 if (currentFolder.isEmpty()) {
847 appBar.setTitle(R.string.bookmarks);
849 appBar.setTitle(currentFolder);
853 private void updateBookmarksListViewExcept(long[] exceptIdLongArray, String folderName) {
854 // Get a `Cursor` with the current contents of the bookmarks database except for the specified database IDs.
855 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksCursorExcept(exceptIdLongArray, folderName);
857 // Setup `bookmarksCursorAdapter` with `this` context. `false` disables autoRequery.
858 CursorAdapter bookmarksCursorAdapter = new CursorAdapter(this, bookmarksCursor, false) {
860 public View newView(Context context, Cursor cursor, ViewGroup parent) {
861 // Inflate the individual item layout. `false` does not attach it to the root.
862 return getLayoutInflater().inflate(R.layout.bookmarks_item_linearlayout, parent, false);
866 public void bindView(View view, Context context, Cursor cursor) {
867 // Get the favorite icon byte array from the cursor.
868 byte[] favoriteIconByteArray = cursor.getBlob(cursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
870 // Convert the byte array to a Bitmap beginning at the first byte and ending at the last.
871 Bitmap favoriteIconBitmap = BitmapFactory.decodeByteArray(favoriteIconByteArray, 0, favoriteIconByteArray.length);
873 // Display the bitmap in `bookmarkFavoriteIcon`.
874 ImageView bookmarkFavoriteIcon = (ImageView) view.findViewById(R.id.bookmark_favorite_icon);
875 bookmarkFavoriteIcon.setImageBitmap(favoriteIconBitmap);
878 // Get the bookmark name from the cursor and display it in `bookmarkNameTextView`.
879 String bookmarkNameString = cursor.getString(cursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
880 TextView bookmarkNameTextView = (TextView) view.findViewById(R.id.bookmark_name);
881 bookmarkNameTextView.setText(bookmarkNameString);
883 // Make the font bold for folders.
884 if (cursor.getInt(cursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) {
885 // The first argument is `null` because we don't want to change the font.
886 bookmarkNameTextView.setTypeface(null, Typeface.BOLD);
887 } else { // Reset the font to default.
888 bookmarkNameTextView.setTypeface(Typeface.DEFAULT);
893 // Update the `ListView`.
894 bookmarksListView.setAdapter(bookmarksCursorAdapter);
897 private void deleteBookmarkFolderContents(int databaseId) {
898 // Get the name of the folder.
899 String folderName = bookmarksDatabaseHelper.getFolderName(databaseId);
901 // Get the contents of the folder.
902 Cursor folderCursor = bookmarksDatabaseHelper.getAllBookmarksCursorByDisplayOrder(folderName);
904 for (int i = 0; i < folderCursor.getCount(); i++) {
905 // Move `folderCursor` to the current row.
906 folderCursor.moveToPosition(i);
908 // Get the database ID of the item.
909 int itemDatabaseId = folderCursor.getInt(folderCursor.getColumnIndex(BookmarksDatabaseHelper._ID));
911 // If this is a folder, delete the contents first.
912 if (bookmarksDatabaseHelper.isFolder(itemDatabaseId)) {
913 deleteBookmarkFolderContents(itemDatabaseId);
916 bookmarksDatabaseHelper.deleteBookmark(itemDatabaseId);