- outAttrs
- Fill in with attribute information about the connection.
Documentation for this section has not yet been entered.
Create a new InputConnection for an InputMethod to interact with the view. The default implementation returns null, since it doesn't support input methods. You can override this to implement such support. This is only needed for views that take focus and text input.
When implementing this, you probably also want to implement View.OnCheckIsTextEditor to indicate you will return a non-null InputConnection.
Also, take good care to fill in the Android.Views.InputMethods.EditorInfo object correctly and in its entirety, so that the connected IME can rely on its values. For example, Android.Views.InputMethods.EditorInfo.InitialSelStart and Android.Views.InputMethods.EditorInfo.InitialSelEnd members must be filled in with the correct cursor position for IMEs to work correctly with your application.