Fix transient Next button in confirm screen on orientation change

During orientation change, input method service could have stale
input editor info. The portrait mode password entry allows fullscreen
UI and it is made visible for a glimpse of second during the change.
This CL adds the flagNoFullscreen to portrait mode password entry
so that the transient switch to fullscreen UI does not happen.

Bug:21073469
Change-Id: Ie9d21e46f88ad0395afb8750ab5d19e938685b89
This commit is contained in:
Xiyuan Xia
2015-05-26 13:17:10 -07:00
parent a0e052b17b
commit 22e1ef222a

View File

@@ -61,7 +61,7 @@
android:layout_gravity="center_horizontal"
android:layout_marginTop="-40dp"
android:inputType="textPassword"
android:imeOptions="actionNext"
android:imeOptions="actionNext|flagNoFullscreen"
android:gravity="center"
android:textSize="16sp"
style="@style/TextAppearance.PasswordEntry"/>