X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2FCreateBookmarkFolder.java;h=7374104756f2f09dbf935be9c070278acea6f6d0;hb=0abf9642763f1af98af73b2fc3cc44752a342db3;hp=0847ce3fac162e782de3c2e5a592043a0a4e37e2;hpb=c4ad9f457f41cbc86391e0099629cd94a235258a;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/CreateBookmarkFolder.java b/app/src/main/java/com/stoutner/privacybrowser/CreateBookmarkFolder.java index 0847ce3f..73741047 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/CreateBookmarkFolder.java +++ b/app/src/main/java/com/stoutner/privacybrowser/CreateBookmarkFolder.java @@ -19,9 +19,10 @@ package com.stoutner.privacybrowser; -import android.app.Activity; +import android.annotation.SuppressLint; import android.app.Dialog; import android.app.DialogFragment; +import android.content.Context; import android.content.DialogInterface; import android.os.Bundle; // If we don't use `android.support.v7.app.AlertDialog` instead of `android.app.AlertDialog` then the dialog will be covered by the keyboard. @@ -35,25 +36,25 @@ import android.widget.ImageView; public class CreateBookmarkFolder extends DialogFragment { // The public interface is used to send information back to the parent activity. public interface CreateBookmarkFolderListener { - void onCancelCreateBookmarkFolder(DialogFragment dialogFragment); - void onCreateBookmarkFolder(DialogFragment dialogFragment); } // `createBookmarkFolderListener` is used in `onAttach()` and `onCreateDialog`. private CreateBookmarkFolderListener createBookmarkFolderListener; - public void onAttach(Activity parentActivity) { - super.onAttach(parentActivity); + public void onAttach(Context context) { + super.onAttach(context); - // Get a handle for `createBookmarkFolderListener` from `parentActivity`. + // Get a handle for `createBookmarkFolderListener` from `context`. try { - createBookmarkFolderListener = (CreateBookmarkFolderListener) parentActivity; + createBookmarkFolderListener = (CreateBookmarkFolderListener) context; } catch(ClassCastException exception) { - throw new ClassCastException(parentActivity.toString() + " must implement CreateBookmarkFolderListener."); + throw new ClassCastException(context.toString() + " must implement CreateBookmarkFolderListener."); } } + // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`. + @SuppressLint("InflateParams") @Override public Dialog onCreateDialog(Bundle savedInstanceState) { // Use `AlertDialog.Builder` to create the `AlertDialog`. The style formats the color of the button text. @@ -66,8 +67,7 @@ public class CreateBookmarkFolder extends DialogFragment { dialogBuilder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { - // Return the `DialogFragment` to the parent activity on cancel. - createBookmarkFolderListener.onCancelCreateBookmarkFolder(CreateBookmarkFolder.this); + // Do nothing. The `AlertDialog` will close automatically. } }); @@ -84,6 +84,9 @@ public class CreateBookmarkFolder extends DialogFragment { // Create an `AlertDialog` from the `AlertDialog.Builder`. final AlertDialog alertDialog = dialogBuilder.create(); + // Remove the warning below that `setSoftInputMode` might produce `java.lang.NullPointerException`. + assert alertDialog.getWindow() != null; + // Show the keyboard when the `Dialog` is displayed on the screen. alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);