1

I am trying to force a EditText which is in Dialog to show up full screen input aka extract ui. Or at least i need a solution because keyboard is overlapping dialog.

Thanks for helps.

Emre Aktürk
  • 3,306
  • 2
  • 18
  • 30

1 Answers1

0

If I understand your question, your target is to have EditText similar to default landscape implementation.

There is no standard solution for this case: https://groups.google.com/forum/#!topic/android-developers/Wihil_srtN4

As a workaround you can implement OnFocusChangeListener in your EditText(or OnClickListener - depends on IME options of other dialog fields) and launch new Activity (witch is designed to show keyboard and full-screen EditText) when user is going to enter text.

DmitryArc
  • 4,757
  • 2
  • 37
  • 42