From 126d96e4bad94d8c057bf581685de0cc21b0d1f8 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 24 Jan 2014 11:13:17 -0500 Subject: [PATCH] prevent soft keyboard from popping up on RepoDetails Its quite annoying to have the URI EditText in focus and the soft keyboard pop up when viewing the RepoDetails since the vast majority of the time, the user will be viewing the info there, not editing the URL. This commit just moves the focus to the frame, and prevents the soft keyboard from showing up by default. The user can still click on the URI EditText to edit it and the soft keyboard will pop up. --- AndroidManifest.xml | 3 ++- res/layout/repodetails.xml | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index cd450e7d8..f25b64016 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -129,7 +129,8 @@ + android:parentActivityName=".ManageRepo" + android:windowSoftInputMode="stateHidden" />