[android-developers] Re: Detect OSK shown / hidden events

2010-12-13 Thread DH
From my hours spent on the Nexus One, onConfigurationChanged does not get called when the soft keyboard state is changed, I have resorted to hooking into the on size changed for my content view. However I get this annoying flickering issue since when one of my button is clicked, I would hide the

[android-developers] Re: Detect OSK shown / hidden events

2010-12-01 Thread Juhani
Hi Dianne, I have overridden the fullscreen mode by adding android:imeOptions=flagNoExtractUi to my EditText. What we're trying to do (or to be exact what our designers demand) is that when clicking an EditText in the UI we will zoom it in nicely and smoothly. We have the animation nailed down

[android-developers] Re: Detect OSK shown / hidden events

2010-11-30 Thread StevePotell
Take a look at the onConfigurationChanged(). If you add in the manifest that you want to handle the event, you can check the configuration object for keyboard displayed and run your code. http://developer.android.com/guide/topics/resources/runtime-changes.html On Nov 30, 9:41 am, Juhani

[android-developers] Re: Detect OSK shown / hidden events

2010-11-30 Thread Juhani
Thank you for the tip. Unfortunately it doesn't seem to work. Whatever I try I cannot get the onConfigurationChanged events. Neither in Application or in Activity. I have tried different combinations in manifefest file's configChanges but nothing I put there seems to make any difference. Only