Hi folks, This problem can be resolved configuring the attribute imeOptions="flagNoExtractUi". For example:
this.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI); ... or ... <EditText android:imeOptions="flagNoExtractUi" .... by xml.... I found it in: http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html "The flagNoExtractUi completely removes the text area, allowing the application to be seen behind it" Regards, Paulo. On Fri, Dec 10, 2010 at 01:44, TreKing <[email protected]> wrote: > 2010/12/9 Rogério de Souza Moraes <[email protected]> > > i created an video on youtube to show the problem: > > > Interesting. Does this also occur if you use the default EditText class? > (not your derived class?) > > If so, I'd say file a bug. > > > > ------------------------------------------------------------------------------------------------- > TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago > transit tracking app for Android-powered devices > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

