From 5e57d66daa38ef197dba80030aca5586205cf155 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Wed, 10 Feb 2016 21:40:46 -0500 Subject: [PATCH] Do not bring up keyboard in view activity Typically one will open the view activity to bring up a barcode, and the keyboard is not expected. Disable the keyboard until an editable field is selected. --- app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f722dfbed..fdc322e6b 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -35,6 +35,7 @@ android:name=".LoyaltyCardViewActivity" android:theme="@style/AppTheme.NoActionBar" android:configChanges="orientation|screenSize" + android:windowSoftInputMode="stateHidden" android:parentActivityName="protect.card_locker.MainActivity"/>