2 * Copyright 2015-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.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.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.LayoutInflater;
35 import android.view.View;
36 import android.view.WindowManager;
37 import android.widget.EditText;
39 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
40 import com.stoutner.privacybrowser.R;
42 public class CreateHomeScreenShortcutDialog extends AppCompatDialogFragment {
43 // The public interface is used to send information back to the parent activity.
44 public interface CreateHomeScreenSchortcutListener {
45 void onCreateHomeScreenShortcut(AppCompatDialogFragment dialogFragment);
48 //`createHomeScreenShortcutListener` is used in `onAttach()` and `onCreateDialog()`.
49 private CreateHomeScreenSchortcutListener createHomeScreenShortcutListener;
51 // Check to make sure that the parent activity implements the listener.
52 public void onAttach(Context context) {
53 super.onAttach(context);
55 createHomeScreenShortcutListener = (CreateHomeScreenSchortcutListener) context;
56 } catch(ClassCastException exception) {
57 throw new ClassCastException(context.toString() + " must implement CreateHomeScreenShortcutListener.");
61 // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
62 @SuppressLint("InflateParams")
65 public Dialog onCreateDialog(Bundle savedInstanceState) {
66 // Get the activity's layout inflater.
67 LayoutInflater layoutInflater = getActivity().getLayoutInflater();
69 // Create a drawable version of the favorite icon.
70 Drawable favoriteIconDrawable = new BitmapDrawable(getResources(), MainWebViewActivity.favoriteIcon);
72 // Use `AlertDialog.Builder` to create the `AlertDialog`. `R.style.LightAlertDialog` formats the color of the button text.
73 AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.LightAlertDialog);
74 dialogBuilder.setTitle(R.string.create_shortcut);
75 dialogBuilder.setIcon(favoriteIconDrawable);
76 // The parent view is `null` because it will be assigned by `AlertDialog`.
77 dialogBuilder.setView(layoutInflater.inflate(R.layout.create_home_screen_shortcut_dialog, null));
79 // Set an `onClick` listener on the negative button.
80 dialogBuilder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
82 public void onClick(DialogInterface dialog, int which) {
83 // Do nothing if `Cancel` is clicked.
87 // Set an `onClick` listener on the positive button.
88 dialogBuilder.setPositiveButton(R.string.create, new DialogInterface.OnClickListener() {
90 public void onClick(DialogInterface dialog, int which) {
91 createHomeScreenShortcutListener.onCreateHomeScreenShortcut(CreateHomeScreenShortcutDialog.this);
96 // Create an `AlertDialog` from the `AlertDialog.Builder`.
97 final AlertDialog alertDialog = dialogBuilder.create();
99 // Remove the warning below that `setSoftInputMode` might produce `java.lang.NullPointerException`.
100 assert alertDialog.getWindow() != null;
102 // Show the keyboard when the Dialog is displayed on the screen.
103 alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
105 // We need to show `alertDialog` before we can call `setOnKeyListener()` below.
108 // Allow the "enter" key on the keyboard to create the shortcut.
109 EditText shortcutNameEditText = (EditText) alertDialog.findViewById(R.id.shortcut_name_edittext);
110 assert shortcutNameEditText != null; // Remove the warning below that shortcutNameEditText might be null.
111 shortcutNameEditText.setOnKeyListener(new View.OnKeyListener() {
112 public boolean onKey(View v, int keyCode, KeyEvent event) {
113 // If the event is a key-down on the "enter" button, select the PositiveButton "Create".
114 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
115 // Trigger the create listener.
116 createHomeScreenShortcutListener.onCreateHomeScreenShortcut(CreateHomeScreenShortcutDialog.this);
118 // Manually dismiss `alertDialog`.
119 alertDialog.dismiss();
121 // Consume the event.
123 } else { // If any other key was pressed, do not consume the event.
129 // `onCreateDialog` requires the return of an `AlertDialog`.