X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;ds=sidebyside;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FCreateHomeScreenShortcutDialog.java;h=d335aa905d858dd4e931a7eb0004237aa435a53f;hb=e923db59fff5ad31f08679c84678cdfb1ca87d63;hp=e5722bf8fce479031c25c91f2e54000e3ef0c12a;hpb=61a76e491469916f2f30aebb47b98cda7cceb557;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateHomeScreenShortcutDialog.java b/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateHomeScreenShortcutDialog.java index e5722bf8..d335aa90 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateHomeScreenShortcutDialog.java +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/CreateHomeScreenShortcutDialog.java @@ -105,9 +105,13 @@ public class CreateHomeScreenShortcutDialog extends AppCompatDialogFragment { // We need to show `alertDialog` before we can call `setOnKeyListener()` below. alertDialog.show(); - // Allow the "enter" key on the keyboard to create the shortcut. + // Get a handle for `shortcut_name_edittext`. EditText shortcutNameEditText = (EditText) alertDialog.findViewById(R.id.shortcut_name_edittext); - assert shortcutNameEditText != null; // Remove the warning below that shortcutNameEditText might be null. + + // Set the current `WebView` title as the text for `shortcutNameEditText`. + shortcutNameEditText.setText(MainWebViewActivity.webViewTitle); + + // Allow the "enter" key on the keyboard to create the shortcut. shortcutNameEditText.setOnKeyListener(new View.OnKeyListener() { public boolean onKey(View v, int keyCode, KeyEvent event) { // If the event is a key-down on the "enter" button, select the PositiveButton "Create".