Prevent the IME from popping up when launching setup flow

b/13769774

Change-Id: I184f577cf40d0f43adcceee6ca9bede77f37d4d0
This commit is contained in:
Tony Mantler 2014-04-04 13:48:42 -07:00
parent a061731281
commit 12890669c3
2 changed files with 20 additions and 0 deletions

View File

@ -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"

View File

@ -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"