X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FCreateBookmarkFolderDialog.kt;h=d4f12193d153346f13bc4022f9fdf3d9363d8e3d;hp=0cca2881aa461631d004c86ee5a0ade8d77eabc9;hb=6bc00e202749ba0cb337be462825002ba74be8fc;hpb=9df712df3780161d77d10c6f3a2444bf8f218c99 diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkFolderDialog.kt b/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkFolderDialog.kt index 0cca2881..d4f12193 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkFolderDialog.kt +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateBookmarkFolderDialog.kt @@ -93,7 +93,7 @@ class CreateBookmarkFolderDialog: DialogFragment() { @SuppressLint("InflateParams") override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { // Get the arguments. - val arguments = arguments!! + val arguments = requireArguments() // Get the favorite icon byte array. val favoriteIconByteArray = arguments.getByteArray("favorite_icon_byte_array")!! @@ -119,7 +119,7 @@ class CreateBookmarkFolderDialog: DialogFragment() { dialogBuilder.setTitle(R.string.create_folder) // Set the view. The parent view is null because it will be assigned by the alert dialog. - dialogBuilder.setView(activity!!.layoutInflater.inflate(R.layout.create_bookmark_folder_dialog, null)) + dialogBuilder.setView(requireActivity().layoutInflater.inflate(R.layout.create_bookmark_folder_dialog, null)) // Set a listener on the cancel button. Using `null` as the listener closes the dialog without doing anything else. dialogBuilder.setNegativeButton(R.string.cancel, null) @@ -145,8 +145,8 @@ class CreateBookmarkFolderDialog: DialogFragment() { alertDialog.show() // Get handles for the views in the dialog. - val webPageIconImageView: ImageView = alertDialog.findViewById(R.id.create_folder_web_page_icon) - val folderNameEditText: EditText = alertDialog.findViewById(R.id.create_folder_name_edittext) + val webPageIconImageView = alertDialog.findViewById(R.id.create_folder_web_page_icon) + val folderNameEditText = alertDialog.findViewById(R.id.create_folder_name_edittext) val createButton = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE) // Display the current favorite icon.