Tweak input boxes so the IME doesn't eat fullscreen in landscape

android:imeOptions="flagNoExtractUI"
Will make screencasts suck less since they get forced to landscape...
This commit is contained in:
Brion Vibber 2013-05-09 16:16:52 -07:00
parent ce66748950
commit e171d22fea
5 changed files with 8 additions and 1 deletions

View file

@ -43,6 +43,7 @@
android:layout_height="wrap_content"
android:hint="@string/username"
android:inputType="textNoSuggestions"
android:imeOptions="flagNoExtractUi"
>
<requestFocus />
@ -53,7 +54,8 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/password"
android:inputType="textPassword" />
android:inputType="textPassword"
android:imeOptions="flagNoExtractUi" />
<Button
android:id="@+id/loginButton"