diff options
author | Brian Attwell <brianattwell@google.com> | 2014-06-25 15:59:15 -0700 |
---|---|---|
committer | Brian Attwell <brianattwell@google.com> | 2014-06-25 16:01:27 -0700 |
commit | c5841bcfdf510ed8f11adf73e08ec8e21e2dfd88 (patch) | |
tree | 830a5172f58bb636d8c9dd38985011057d54572a /AndroidManifest.xml | |
parent | cb001b901fe6f2e766e856fe1dd7a58731adb787 (diff) | |
download | packages_apps_Contacts-c5841bcfdf510ed8f11adf73e08ec8e21e2dfd88.tar.gz packages_apps_Contacts-c5841bcfdf510ed8f11adf73e08ec8e21e2dfd88.tar.bz2 packages_apps_Contacts-c5841bcfdf510ed8f11adf73e08ec8e21e2dfd88.zip |
Don't immediately show keyboard in edit screen
UX thinks showing the soft keyboard immediately in the edit
Activity is annoying. You probably aren't going to want to edit
the first field in the Activity.
I'll need to cherry this to Google Contacts.
Change-Id: I1a040e12478c7d2e4e686d06f0e66fd4b7738a94
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index e2697fb1c..f145ac12a 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -333,7 +333,7 @@ <activity android:name=".activities.ContactEditorActivity" android:theme="@style/EditorActivityTheme" - android:windowSoftInputMode="adjustResize"> + android:windowSoftInputMode="stateHidden|adjustResize"> <intent-filter android:label="@string/editContactDescription"> <action android:name="android.intent.action.EDIT" /> |