Request keyboard for local notes

This commit is contained in:
M66B 2021-03-06 09:52:22 +01:00
parent 2d4f735761
commit 56ff1666f5
1 changed files with 9 additions and 2 deletions

View File

@ -6716,11 +6716,18 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
final long id = getArguments().getLong("id");
final String notes = getArguments().getString("notes");
View view = LayoutInflater.from(getContext()).inflate(R.layout.dialog_notes, null);
final Context context = getContext();
final InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
View view = LayoutInflater.from(context).inflate(R.layout.dialog_notes, null);
final EditText etNotes = view.findViewById(R.id.etNotes);
etNotes.setText(notes);
etNotes.selectAll();
return new AlertDialog.Builder(getContext())
etNotes.requestFocus();
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
return new AlertDialog.Builder(context)
.setView(view)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override