Prevent the IME from popping up when launching setup flow
b/13769774 Change-Id: I184f577cf40d0f43adcceee6ca9bede77f37d4d0
This commit is contained in:
parent
a061731281
commit
12890669c3
@ -22,6 +22,16 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
>
|
||||
<!-- We don't want the keyboard up when the user arrives in this initial screen -->
|
||||
<View
|
||||
android:layout_height="0dp"
|
||||
android:layout_width="0dp"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" >
|
||||
<requestFocus/>
|
||||
</View>
|
||||
<ImageView
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="200dp"
|
||||
|
@ -22,6 +22,16 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
>
|
||||
<!-- We don't want the keyboard up when the user arrives in this initial screen -->
|
||||
<View
|
||||
android:layout_height="0dp"
|
||||
android:layout_width="0dp"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
android:contentDescription="@null"
|
||||
android:importantForAccessibility="no" >
|
||||
<requestFocus/>
|
||||
</View>
|
||||
<ImageView
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="200dp"
|
||||
|
Loading…
Reference in New Issue
Block a user