0

Like the title says, I've got a viewPager with some editText fields inside. I can select the editText fields perfectly fine (emulator and physical device). I see the cursor, and I see the underline color change, indicating it's selected, but I can't type. Tapping on the editText fields doesn't open the softKeyboard.

Is this a known issue with a simple fix, or is code needed to identify what's going wrong here?

Timmiej93
  • 1,328
  • 1
  • 16
  • 35

2 Answers2

3

Finally bumped in to an answer that's working for me, which can be found here.


Basically, if you're using the onCreateDialog() method, you leave that as is, and add the onResume() method below to your DialogFragment's java file.

@Override
public void onResume() {
    super.onResume();
    Dialog dialog = getDialog();
    dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
}
Community
  • 1
  • 1
Timmiej93
  • 1,328
  • 1
  • 16
  • 35
0

You can force softKeyboard with this code:

EditText yourEditText= (EditText) findViewById(R.id.yourEditText);
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(yourEditText, InputMethodManager.SHOW_IMPLICIT);
GioLaq
  • 2,489
  • 21
  • 26
  • 1
    Tried it, but softkeyboard doesn't open. But shouldn't I look into fixing what's causing this, instead of working around it? – Timmiej93 Mar 27 '16 at 16:00