2 * Copyright © 2016 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.dialogs;
22 import android.annotation.SuppressLint;
23 import android.app.AlertDialog;
24 import android.app.Dialog;
25 import android.content.Context;
26 import android.content.DialogInterface;
27 import android.database.Cursor;
28 import android.graphics.Bitmap;
29 import android.graphics.BitmapFactory;
30 import android.os.Bundle;
31 import android.support.annotation.NonNull;
32 // We have to use `AppCompatDialogFragment` instead of `DialogFragment` or an error is produced on API <=22.
33 import android.support.v7.app.AppCompatDialogFragment;
34 import android.view.KeyEvent;
35 import android.view.View;
36 import android.view.WindowManager;
37 import android.widget.EditText;
38 import android.widget.ImageView;
40 import com.stoutner.privacybrowser.activities.BookmarksActivity;
41 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
42 import com.stoutner.privacybrowser.R;
43 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
45 public class EditBookmarkFolderDialog extends AppCompatDialogFragment {
46 // The public interface is used to send information back to the parent activity.
47 public interface EditBookmarkFolderListener {
48 void onSaveEditBookmarkFolder(AppCompatDialogFragment dialogFragment);
51 // `editFolderListener` is used in `onAttach()` and `onCreateDialog`.
52 private EditBookmarkFolderListener editBookmarkFolderListener;
54 public void onAttach(Context context) {
55 super.onAttach(context);
57 // Get a handle for `EditFolderListener` from `parentActivity`.
59 editBookmarkFolderListener = (EditBookmarkFolderListener) context;
60 } catch(ClassCastException exception) {
61 throw new ClassCastException(context.toString() + " must implement EditBookmarkFolderListener.");
65 // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
66 @SuppressLint("InflateParams")
69 public Dialog onCreateDialog(Bundle savedInstanceState) {
70 // Get a long array with the the databaseId of the selected bookmark and convert it to an `int`.
71 long[] selectedBookmarkLongArray = BookmarksActivity.checkedItemIds;
72 int selectedBookmarkDatabaseId = (int) selectedBookmarkLongArray[0];
74 // Get a `Cursor` with the specified bookmark and move it to the first position.
75 Cursor bookmarkCursor = BookmarksActivity.bookmarksDatabaseHelper.getBookmarkCursor(selectedBookmarkDatabaseId);
76 bookmarkCursor.moveToFirst();
78 // Use `AlertDialog.Builder` to create the `AlertDialog`.
79 AlertDialog.Builder dialogBuilder;
81 // Set the style according to the theme.
82 if (MainWebViewActivity.darkTheme) {
83 dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
85 dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
89 dialogBuilder.setTitle(R.string.edit_folder);
91 // Set the view. The parent view is `null` because it will be assigned by `AlertDialog`.
92 dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.edit_bookmark_folder_dialog, null));
94 // Set an `onClick()` listener for the negative button.
95 dialogBuilder.setNegativeButton(R.string.cancel, new Dialog.OnClickListener() {
97 public void onClick(DialogInterface dialog, int which) {
98 // Do nothing. The `AlertDialog` will close automatically.
102 // Set the `onClick()` listener fo the positive button.
103 dialogBuilder.setPositiveButton(R.string.save, new Dialog.OnClickListener() {
105 public void onClick(DialogInterface dialog, int which) {
106 // Return the `DialogFragment` to the parent activity on save.
107 editBookmarkFolderListener.onSaveEditBookmarkFolder(EditBookmarkFolderDialog.this);
112 // Create an `AlertDialog` from the `AlertDialog.Builder`.
113 final AlertDialog alertDialog = dialogBuilder.create();
115 // Remove the warning below that `setSoftInputMode` might produce `java.lang.NullPointerException`.
116 assert alertDialog.getWindow() != null;
118 // Show the keyboard when the `Dialog` is displayed on the screen.
119 alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
121 // We need to show the `AlertDialog` before we can modify items in the layout.
124 // Get the current favorite icon byte array from the `Cursor`.
125 byte[] currentIconByteArray = bookmarkCursor.getBlob(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
126 // Convert the byte array to a `Bitmap` beginning at the first byte and ending at the last.
127 Bitmap currentIconBitmap = BitmapFactory.decodeByteArray(currentIconByteArray, 0, currentIconByteArray.length);
128 // Display `currentIconBitmap` in `edit_folder_current_icon`.
129 ImageView currentIconImageView = (ImageView) alertDialog.findViewById(R.id.edit_folder_current_icon);
130 currentIconImageView.setImageBitmap(currentIconBitmap);
132 // Get a `Bitmap` of the favorite icon from `MainWebViewActivity` and display it in `edit_folder_web_page_favorite_icon`.
133 ImageView webPageFavoriteIconImageView = (ImageView) alertDialog.findViewById(R.id.edit_folder_web_page_favorite_icon);
134 webPageFavoriteIconImageView.setImageBitmap(MainWebViewActivity.favoriteIconBitmap);
136 // Load the text for `edit_folder_name_edittext`.
137 EditText folderNameEditText = (EditText) alertDialog.findViewById(R.id.edit_folder_name_edittext);
138 folderNameEditText.setText(bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME)));
140 // Allow the `enter` key on the keyboard to save the bookmark from `edit_bookmark_name_edittext`.
141 folderNameEditText.setOnKeyListener(new View.OnKeyListener() {
142 public boolean onKey(View v, int keyCode, KeyEvent event) {
143 // If the event is a key-down on the "enter" button, select the PositiveButton `Save`.
144 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
145 // Trigger `editBookmarkListener` and return the DialogFragment to the parent activity.
146 editBookmarkFolderListener.onSaveEditBookmarkFolder(EditBookmarkFolderDialog.this);
147 // Manually dismiss the `AlertDialog`.
148 alertDialog.dismiss();
149 // Consume the event.
151 } else { // If any other key was pressed, do not consume the event.
157 // `onCreateDialog` requires the return of an `AlertDialog`.