[android-developers] Re: Catch G1 keyboard open/close

2008-10-26 Thread JP
Thanks guys - I'll check it out. On Oct 26, 9:52 am, "Jeff Hamilton" <[EMAIL PROTECTED]> wrote: > You can use the screenOrientation XML flag to force your activity into > a specific orientation. > Seehttp://code.google.com/android/reference/android/R.styleable.html#And > > -Jeff > > On Sun,

[android-developers] Re: Catch G1 keyboard open/close

2008-10-26 Thread Jeff Hamilton
You can use the screenOrientation XML flag to force your activity into a specific orientation. See http://code.google.com/android/reference/android/R.styleable.html#AndroidManifestActivity_screenOrientation. -Jeff On Sun, Oct 26, 2008 at 9:22 AM, JP <[EMAIL PROTECTED]> wrote: > > I could not fin

[android-developers] Re: Catch G1 keyboard open/close

2008-10-26 Thread Edward Falk
In your manifest, add this attribute to your Activity tag: android:configChanges="keyboardHidden" http://code.google.com/android/reference/android/R.attr.html#configChanges and override the onConfigurationChanged() method in your Activity http://code.google.com/android/reference/android/app/Act