Re: [android-developers] Re: preventing keyboard pop up on device when screen pushed

2011-10-04 Thread John Goche
Thank you for your feedback, I see the options you mention listed here: http://developer.android.com/guide/topics/manifest/activity-element.html It works. Regards, John Goche On Mon, Oct 3, 2011 at 8:18 PM, rich friedel rich.frie...@gmail.com wrote: In your manifest declare the

Re: [android-developers] Re: preventing keyboard pop up on device when screen pushed

2011-10-04 Thread Chris
I'd recommend using android:windowSoftInputMode=stateUnchanged for the same affect without hassling with config changes. stateUnchanged means if the activity starts and the keyboard isn't showing, then don't show it. If it is showing, then keep it visible. -- You received this message

[android-developers] Re: preventing keyboard pop up on device when screen pushed

2011-10-03 Thread rich friedel
In your manifest declare the windowSoftInputMode and configChanges http://developer.android.com/resources/articles/on-screen-inputs.html activity android:name=.MainActivity android:label=@string/app_name