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

@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.

-- K

17.05.2012 14:26, Miha Valencic написал:

there is not TextView or EditText view. To explain further: I have a GLSurfaceView (well, a custom view derived from GLSurfaceView), which shows the "remote pc desktop". The keyboard is used to capture keys and send them over the wire to remote desktop.

Do you think flagNoExtractUi would have effect on GLSurfaceView?

Regards,
Miha.

--
Kostya Vasilyev

--
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

Reply via email to