Kostya, fixed the ICS connectivity issue. Even with flagNoExtractUi flag set on my view, the behaviour is the same.
Dianne, you mentioned the browser app ' does set a flag with the IME to tell it that it would like it to try harder to not go into extract mode'. Is this the flag you were talking about? Just for clarification purposes, I will explain again what the problem is: the keyboard shows up, over 2/3 of the screen in landscape mode. There are some onMeasure events going on, but the view window width/height is not being shrinked (like in portrait mode). Since I am showing a remote desktop in that view, it is necessary for the user to be able to see the whole view even when the keyboard is shown. I'll prepare a simple repro of the problem so perhaps a good soul can test this on another device as well. Regards, Miha. On Fri, May 18, 2012 at 8:11 AM, Miha Valencic <[email protected]>wrote: > Kostya, I will try ASAP. I'm currently struggling with adb issue (my sgs2 > got OTA update to ICS, and now Ubuntu does not 'see' the device so can't > test on the device. The emulator has it's own issues with soft keyboard. > > > On Thu, May 17, 2012 at 12:39 PM, Kostya Vasilyev <[email protected]>wrote: > >> Following the code in EditText (actually, TextView), to see how >> android:imeOptions value is used, brings us here: >> >> https://github.com/android/**platform_frameworks_base/blob/** >> master/core/java/android/**widget/TextView.java#L5605<https://github.com/android/platform_frameworks_base/blob/master/core/java/android/widget/TextView.java#L5605> >> >> @Override >> public InputConnection onCreateInputConnection(**EditorInfo outAttrs) { >> } >> >> ... which copies the value of imeOptions into outAttrs.imeOptions. >> >> Perhaps you could try doing the same in your view to see if it helps. >> >> -- 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

