]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/CreateBookmark.java
Add the ability to create and edit bookmark folders.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / CreateBookmark.java
1 /**
2  * Copyright 2016 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;
21
22 import android.app.Activity;
23 import android.app.Dialog;
24 import android.app.DialogFragment;
25 import android.content.DialogInterface;
26 import android.graphics.drawable.BitmapDrawable;
27 import android.graphics.drawable.Drawable;
28 import android.os.Bundle;
29 // If we don't use `android.support.v7.app.AlertDialog` instead of `android.app.AlertDialog` then the dialog will be covered by the keyboard.
30 import android.support.v7.app.AlertDialog;
31 import android.view.KeyEvent;
32 import android.view.View;
33 import android.view.WindowManager;
34 import android.widget.EditText;
35
36 public class CreateBookmark extends DialogFragment {
37     // The public interface is used to send information back to the parent activity.
38     public interface CreateBookmarkListener {
39         void onCancelCreateBookmark(DialogFragment dialogFragment);
40
41         void onCreateBookmark(DialogFragment dialogFragment);
42     }
43
44     // `createBookmarkListener` is used in `onAttach()` and `onCreateDialog()`
45     private CreateBookmarkListener createBookmarkListener;
46
47
48     public void onAttach(Activity parentActivity) {
49         super.onAttach(parentActivity);
50
51         // Get a handle for `CreateBookmarkListener` from `parentActivity`.
52         try {
53             createBookmarkListener = (CreateBookmarkListener) parentActivity;
54         } catch(ClassCastException exception) {
55             throw new ClassCastException(parentActivity.toString() + " must implement CreateBookmarkListener.");
56         }
57     }
58
59     @Override
60     public Dialog onCreateDialog(Bundle savedInstanceState) {
61         // Create a drawable version of the favorite icon.
62         Drawable favoriteIconDrawable = new BitmapDrawable(getResources(), MainWebViewActivity.favoriteIcon);
63
64         // Use `AlertDialog.Builder` to create the `AlertDialog`.  The style formats the color of the button text.
65         AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.LightAlertDialog);
66         dialogBuilder.setTitle(R.string.create_bookmark);
67         dialogBuilder.setIcon(favoriteIconDrawable);
68         // The parent view is `null` because it will be assigned by the `AlertDialog`.
69         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.create_bookmark_dialog, null));
70
71         // Set an `onClick()` listener for the negative button.
72         dialogBuilder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
73             @Override
74             public void onClick(DialogInterface dialog, int which) {
75                 // Return the `DialogFragment` to the parent activity on cancel.
76                 createBookmarkListener.onCancelCreateBookmark(CreateBookmark.this);
77             }
78         });
79
80         // Set an `onClick()` listener for the positive button.
81         dialogBuilder.setPositiveButton(R.string.create, new DialogInterface.OnClickListener() {
82             @Override
83             public void onClick(DialogInterface dialog, int which) {
84                 // Return the `DialogFragment` to the parent activity on create.
85                 createBookmarkListener.onCreateBookmark(CreateBookmark.this);
86             }
87         });
88
89
90         // Create an `AlertDialog` from the `AlertDialog.Builder`.
91         final AlertDialog alertDialog = dialogBuilder.create();
92
93         // Show the keyboard when the `Dialog` is displayed on the screen.
94         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
95
96         // We need to show the `AlertDialog` before we can call `setOnKeyListener()` below.
97         alertDialog.show();
98
99         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_name_edittext`.
100         EditText createBookmarkNameEditText = (EditText) alertDialog.findViewById(R.id.create_bookmark_name_edittext);
101         assert createBookmarkNameEditText != null;  // Remove the warning below that `createBookmarkNameEditText` might be `null`.
102         createBookmarkNameEditText.setOnKeyListener(new View.OnKeyListener() {
103             public boolean onKey(View v, int keyCode, KeyEvent event) {
104                 // If the event is a key-down on the `enter` button, select the `PositiveButton` `Create`.
105                 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
106                     // Trigger `createBookmarkListener` and return the `DialogFragment` to the parent activity.
107                     createBookmarkListener.onCreateBookmark(CreateBookmark.this);
108                     // Manually dismiss the `AlertDialog`.
109                     alertDialog.dismiss();
110                     // Consume the event.
111                     return true;
112                 } else {  // If any other key was pressed, do not consume the event.
113                     return false;
114                 }
115             }
116         });
117
118         // Set the formattedUrlString as the initial text of `create_bookmark_url_edittext`.
119         EditText createBookmarkUrlEditText = (EditText) alertDialog.findViewById(R.id.create_bookmark_url_edittext);
120         assert createBookmarkUrlEditText != null;// Remove the warning below that `createBookmarkUrlEditText` might be `null`.
121         createBookmarkUrlEditText.setText(MainWebViewActivity.formattedUrlString);
122
123         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_url_edittext`.
124         createBookmarkUrlEditText.setOnKeyListener(new View.OnKeyListener() {
125             public boolean onKey(View v, int keyCode, KeyEvent event) {
126                 // If the event is a key-down on the "enter" button, select the PositiveButton "Create".
127                 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
128                     // Trigger `createBookmarkListener` and return the DialogFragment to the parent activity.
129                     createBookmarkListener.onCreateBookmark(CreateBookmark.this);
130                     // Manually dismiss the `AlertDialog`.
131                     alertDialog.dismiss();
132                     // Consume the event.
133                     return true;
134                 } else { // If any other key was pressed, do not consume the event.
135                     return false;
136                 }
137             }
138         });
139
140         // `onCreateDialog()` requires the return of an `AlertDialog`.
141         return alertDialog;
142     }
143 }