]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkDialog.java
d034aac7504a404ee894645973dc5ecf65e1e319
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / CreateBookmarkDialog.java
1 /*
2  * Copyright © 2016-2018 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.graphics.drawable.BitmapDrawable;
28 import android.graphics.drawable.Drawable;
29 import android.os.Bundle;
30 import android.support.annotation.NonNull;
31 // We have to use `AppCompatDialogFragment` instead of `DialogFragment` or an error is produced on API <= 22.
32 import android.support.v7.app.AppCompatDialogFragment;
33 import android.view.KeyEvent;
34 import android.view.View;
35 import android.view.WindowManager;
36 import android.widget.EditText;
37
38 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
39 import com.stoutner.privacybrowser.R;
40
41 public class CreateBookmarkDialog extends AppCompatDialogFragment {
42     // The public interface is used to send information back to the parent activity.
43     public interface CreateBookmarkListener {
44         void onCreateBookmark(AppCompatDialogFragment dialogFragment);
45     }
46
47     // `createBookmarkListener` is used in `onAttach()` and `onCreateDialog()`
48     private CreateBookmarkListener createBookmarkListener;
49
50
51     public void onAttach(Context context) {
52         super.onAttach(context);
53
54         // Get a handle for `CreateBookmarkListener` from the launching context.
55         createBookmarkListener = (CreateBookmarkListener) context;
56     }
57
58     // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
59     @SuppressLint("InflateParams")
60     @Override
61     @NonNull
62     public Dialog onCreateDialog(Bundle savedInstanceState) {
63         // Create a drawable version of the favorite icon.
64         Drawable favoriteIconDrawable = new BitmapDrawable(getResources(), MainWebViewActivity.favoriteIconBitmap);
65
66         // Use `AlertDialog.Builder` to create the `AlertDialog`.
67         AlertDialog.Builder dialogBuilder;
68
69         // Set the style according to the theme.
70         if (MainWebViewActivity.darkTheme) {
71             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
72         } else {
73             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
74         }
75
76         // Set the title and icon.
77         dialogBuilder.setTitle(R.string.create_bookmark);
78         dialogBuilder.setIcon(favoriteIconDrawable);
79
80         // Remove the warning below that `getLayoutInflater()` might be null.
81         assert getActivity() != null;
82
83         // Set the view.  The parent view is `null` because it will be assigned by the `AlertDialog`.
84         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.create_bookmark_dialog, null));
85
86         // Set an `onClick()` listener for the negative button.
87         dialogBuilder.setNegativeButton(R.string.cancel, (DialogInterface dialog, int which) -> {
88             // Do nothing.  The `AlertDialog` will close automatically.
89         });
90
91         // Set an `onClick()` listener for the positive button.
92         dialogBuilder.setPositiveButton(R.string.create, (DialogInterface dialog, int which) -> {
93             // Return the `DialogFragment` to the parent activity.
94             createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
95         });
96
97         // Create an `AlertDialog` from the `AlertDialog.Builder`.
98         final AlertDialog alertDialog = dialogBuilder.create();
99
100         // Remove the warning below that `getWindow()` might be null.
101         assert alertDialog.getWindow() != null;
102
103         // Disable screenshots if not allowed.
104         if (!MainWebViewActivity.allowScreenshots) {
105             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
106         }
107
108         // Show the keyboard when the `AlertDialog` is displayed on the screen.
109         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
110
111         // The `AlertDialog` needs to be shown before `setOnKeyListener()` can be called.
112         alertDialog.show();
113
114         // Get a handle for `create_bookmark_name_edittext`.
115         EditText createBookmarkNameEditText = alertDialog.findViewById(R.id.create_bookmark_name_edittext);
116
117         // Set the current `WebView` title as the text for `create_bookmark_name_edittext`.
118         createBookmarkNameEditText.setText(MainWebViewActivity.webViewTitle);
119
120         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_name_edittext`.
121         createBookmarkNameEditText.setOnKeyListener((View view, int keyCode, KeyEvent event) -> {
122             // If the event is a key-down on the `enter` key, select the `PositiveButton` `Create`.
123             if ((keyCode == KeyEvent.KEYCODE_ENTER) && (event.getAction() == KeyEvent.ACTION_DOWN)) {
124                 // Trigger `createBookmarkListener` and return the `DialogFragment` to the parent activity.
125                 createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
126
127                 // Manually dismiss the `AlertDialog`.
128                 alertDialog.dismiss();
129
130                 // Consume the event.
131                 return true;
132             } else {  // If any other key was pressed, do not consume the event.
133                 return false;
134             }
135         });
136
137         // Set the formattedUrlString as the initial text of `create_bookmark_url_edittext`.
138         EditText createBookmarkUrlEditText = alertDialog.findViewById(R.id.create_bookmark_url_edittext);
139         createBookmarkUrlEditText.setText(MainWebViewActivity.formattedUrlString);
140
141         // Allow the `enter` key on the keyboard to create the bookmark from `create_bookmark_url_edittext`.
142         createBookmarkUrlEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
143             // If the event is a key-down on the "enter" key, select the PositiveButton "Create".
144             if ((keyCode == KeyEvent.KEYCODE_ENTER) && (event.getAction() == KeyEvent.ACTION_DOWN)) {
145                 // Trigger `createBookmarkListener` and return the DialogFragment to the parent activity.
146                 createBookmarkListener.onCreateBookmark(CreateBookmarkDialog.this);
147
148                 // Manually dismiss the `AlertDialog`.
149                 alertDialog.dismiss();
150
151                 // Consume the event.
152                 return true;
153             } else { // If any other key was pressed, do not consume the event.
154                 return false;
155             }
156         });
157
158         // `onCreateDialog()` requires the return of an `AlertDialog`.
159         return alertDialog;
160     }
161 }