Explicitly hide keyboard / open link dialog

This commit is contained in:
M66B 2023-06-29 08:28:42 +02:00
parent 2a6123dca6
commit ac71e20fef
1 changed files with 7 additions and 0 deletions

View File

@ -746,6 +746,13 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
} else
grpOpenWith.setVisibility(View.GONE);
dview.post(new Runnable() {
@Override
public void run() {
Helper.hideKeyboard(etLink);
}
});
Log.i("Open link dialog uri=" + uri);
return new AlertDialog.Builder(context)
.setView(dview)