]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/EditBookmarkDialog.java
Disable the edit button in the edit bookmark dialog unless some informaiton has chang...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / EditBookmarkDialog.java
1 /*
2  * Copyright © 2016-2017 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 package com.stoutner.privacybrowser.dialogs;
21
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.IdRes;
32 import android.support.annotation.NonNull;
33 // We have to use `AppCompatDialogFragment` instead of `DialogFragment` or an error is produced on API <=22.
34 import android.support.v7.app.AppCompatDialogFragment;
35 import android.text.Editable;
36 import android.text.TextWatcher;
37 import android.view.KeyEvent;
38 import android.view.View;
39 import android.view.WindowManager;
40 import android.widget.Button;
41 import android.widget.EditText;
42 import android.widget.ImageView;
43 import android.widget.RadioButton;
44 import android.widget.RadioGroup;
45
46 import com.stoutner.privacybrowser.activities.BookmarksActivity;
47 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
48 import com.stoutner.privacybrowser.R;
49 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
50
51 public class EditBookmarkDialog extends AppCompatDialogFragment {
52     // The public interface is used to send information back to the parent activity.
53     public interface EditBookmarkListener {
54         void onSaveEditBookmark(AppCompatDialogFragment dialogFragment);
55     }
56
57     // `editBookmarkListener` is used in `onAttach()` and `onCreateDialog()`
58     private EditBookmarkListener editBookmarkListener;
59
60     public void onAttach(Context context) {
61         super.onAttach(context);
62
63         // Get a handle for `EditBookmarkListener` from `context`.
64         try {
65             editBookmarkListener = (EditBookmarkListener) context;
66         } catch(ClassCastException exception) {
67             throw new ClassCastException(context.toString() + " must implement EditBookmarkListener.");
68         }
69     }
70
71     // Instantiate the class variables.
72     EditText nameEditText;
73     EditText urlEditText;
74     RadioButton newIconRadioButton;
75     Button editButton;
76     String currentName;
77     String currentUrl;
78
79     // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
80     @SuppressLint("InflateParams")
81     @Override
82     @NonNull
83     public Dialog onCreateDialog(Bundle savedInstanceState) {
84         // Get a long array with the the databaseId of the selected bookmark and convert it to an `int`.
85         long[] selectedBookmarkLongArray = BookmarksActivity.checkedItemIds;
86         int selectedBookmarkDatabaseId = (int) selectedBookmarkLongArray[0];
87
88         // Get a `Cursor` with the specified bookmark and move it to the first position.
89         Cursor bookmarkCursor = BookmarksActivity.bookmarksDatabaseHelper.getBookmarkCursor(selectedBookmarkDatabaseId);
90         bookmarkCursor.moveToFirst();
91
92         // Use `AlertDialog.Builder` to create the `AlertDialog`.
93         AlertDialog.Builder dialogBuilder;
94
95         // Set the style according to the theme.
96         if (MainWebViewActivity.darkTheme) {
97             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
98         } else {
99             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
100         }
101
102         // Set the title.
103         dialogBuilder.setTitle(R.string.edit_bookmark);
104
105         // Set the view.  The parent view is `null` because it will be assigned by `AlertDialog`.
106         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.edit_bookmark_dialog, null));
107
108         // Set an `onClick()` listener for the negative button.
109         dialogBuilder.setNegativeButton(R.string.cancel, new Dialog.OnClickListener() {
110             @Override
111             public void onClick(DialogInterface dialog, int which) {
112                 // Do nothing.  The `AlertDialog` will close automatically.
113             }
114         });
115
116         // Set the `onClick()` listener fo the positive button.
117         dialogBuilder.setPositiveButton(R.string.save, new Dialog.OnClickListener() {
118             @Override
119             public void onClick(DialogInterface dialog, int which) {
120                 // Return the `DialogFragment` to the parent activity on save.
121                 editBookmarkListener.onSaveEditBookmark(EditBookmarkDialog.this);
122             }
123         });
124
125         // Create an `AlertDialog` from the `AlertDialog.Builder`.
126         final AlertDialog alertDialog = dialogBuilder.create();
127
128         // Remove the warning below that `setSoftInputMode` might produce `java.lang.NullPointerException`.
129         assert alertDialog.getWindow() != null;
130
131         // Show the keyboard when `alertDialog` is displayed on the screen.
132         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
133
134         // The `AlertDialog` must be shown before items in the layout can be modified.
135         alertDialog.show();
136
137         // Get handles for the layout items.
138         RadioGroup iconRadioGroup = (RadioGroup) alertDialog.findViewById(R.id.edit_bookmark_icon_radiogroup);
139         ImageView currentIconImageView = (ImageView) alertDialog.findViewById(R.id.edit_bookmark_current_icon);
140         ImageView newFavoriteIconImageView = (ImageView) alertDialog.findViewById(R.id.edit_bookmark_web_page_favorite_icon);
141         newIconRadioButton = (RadioButton) alertDialog.findViewById(R.id.edit_bookmark_web_page_favorite_icon_radiobutton);
142         nameEditText = (EditText) alertDialog.findViewById(R.id.edit_bookmark_name_edittext);
143         urlEditText = (EditText) alertDialog.findViewById(R.id.edit_bookmark_url_edittext);
144         editButton = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE);
145
146         // Get the current favorite icon byte array from the `Cursor`.
147         byte[] currentIconByteArray = bookmarkCursor.getBlob(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
148
149         // Convert the byte array to a `Bitmap` beginning at the first byte and ending at the last.
150         Bitmap currentIconBitmap = BitmapFactory.decodeByteArray(currentIconByteArray, 0, currentIconByteArray.length);
151
152         // Display `currentIconBitmap` in `edit_bookmark_current_icon`.
153         currentIconImageView.setImageBitmap(currentIconBitmap);
154
155         // Get a `Bitmap` of the favorite icon from `MainWebViewActivity` and display it in `edit_bookmark_web_page_favorite_icon`.
156         newFavoriteIconImageView.setImageBitmap(MainWebViewActivity.favoriteIconBitmap);
157
158         // Store the current bookmark name and URL.
159         currentName = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
160         currentUrl = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL));
161
162         // Populate the `EditTexts`.
163         nameEditText.setText(currentName);
164         urlEditText.setText(currentUrl);
165
166         // Initially disable the edit button.
167         editButton.setEnabled(false);
168
169         // Update the edit button if the icon selection changes.
170         iconRadioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
171             @Override
172             public void onCheckedChanged(RadioGroup group, @IdRes int checkedId) {
173                 // Update the edit button.
174                 updateEditButton();
175             }
176         });
177
178         // Update the edit button if the bookmark name changes.
179         nameEditText.addTextChangedListener(new TextWatcher() {
180             @Override
181             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
182                 // Do nothing.
183             }
184
185             @Override
186             public void onTextChanged(CharSequence s, int start, int before, int count) {
187                 // Do nothing.
188             }
189
190             @Override
191             public void afterTextChanged(Editable s) {
192                 // Update the edit button.
193                 updateEditButton();
194             }
195         });
196
197         // Update the edit button if the URL changes.
198         urlEditText.addTextChangedListener(new TextWatcher() {
199             @Override
200             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
201                 // Do nothing.
202             }
203
204             @Override
205             public void onTextChanged(CharSequence s, int start, int before, int count) {
206                 // Do nothing.
207             }
208
209             @Override
210             public void afterTextChanged(Editable s) {
211                 // Update the edit button.
212                 updateEditButton();
213             }
214         });
215
216         // Allow the `enter` key on the keyboard to save the bookmark from `edit_bookmark_name_edittext`.
217         nameEditText.setOnKeyListener(new View.OnKeyListener() {
218             @Override
219             public boolean onKey(View v, int keyCode, KeyEvent event) {
220                 // If the event is an `ACTION_DOWN` on the `enter` key, save the bookmark.
221                 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER) && editButton.isEnabled()) {  // The enter key was pressed and the edit button is enabled.
222                     // Trigger `onSaveEditBookmark()` and return the `DialogFragment` to the parent activity.
223                     editBookmarkListener.onSaveEditBookmark(EditBookmarkDialog.this);
224                     // Manually dismiss `alertDialog`.
225                     alertDialog.dismiss();
226                     // Consume the event.
227                     return true;
228                 } else {  // If any other key was pressed, or if the edit button is currently disabled, do not consume the event.
229                     return false;
230                 }
231             }
232         });
233
234         // Allow the "enter" key on the keyboard to save the bookmark from `edit_bookmark_url_edittext`.
235         urlEditText.setOnKeyListener(new View.OnKeyListener() {
236             public boolean onKey(View v, int keyCode, KeyEvent event) {
237                 // If the event is a key-down on the `enter` button, select the PositiveButton `Save`.
238                 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER) && editButton.isEnabled()) {  // The enter key was pressed and the edit button is enabled.
239                     // Trigger `editBookmarkListener` and return the DialogFragment to the parent activity.
240                     editBookmarkListener.onSaveEditBookmark(EditBookmarkDialog.this);
241                     // Manually dismiss the `AlertDialog`.
242                     alertDialog.dismiss();
243                     // Consume the event.
244                     return true;
245                 } else { // If any other key was pressed, or if the edit button is currently disabled, do not consume the event.
246                     return false;
247                 }
248             }
249         });
250
251         // `onCreateDialog` requires the return of an `AlertDialog`.
252         return alertDialog;
253     }
254
255     private void updateEditButton() {
256         // Get the text from the `EditTexts`.
257         String newName = nameEditText.getText().toString();
258         String newUrl = urlEditText.getText().toString();
259
260         // Has the favorite icon changed?
261         boolean iconChanged = newIconRadioButton.isChecked();
262
263         // Has the name changed?
264         boolean nameChanged = !newName.equals(currentName);
265
266         // Has the URL changed?
267         boolean urlChanged = !newUrl.equals(currentUrl);
268
269         editButton.setEnabled(iconChanged || nameChanged || urlChanged);
270     }
271 }