InputMethodService.OnBindInput Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when a new client has bound to the input method.
[Android.Runtime.Register("onBindInput", "()V", "GetOnBindInputHandler")]
public virtual void OnBindInput ();
[<Android.Runtime.Register("onBindInput", "()V", "GetOnBindInputHandler")>]
abstract member OnBindInput : unit -> unit
override this.OnBindInput : unit -> unit
- Attributes
Remarks
Called when a new client has bound to the input method. This may be followed by a series of #onStartInput(EditorInfo, boolean)
and #onFinishInput()
calls as the user navigates through its UI. Upon this call you know that #getCurrentInputBinding
and #getCurrentInputConnection
return valid objects.
Java documentation for android.inputmethodservice.InputMethodService.onBindInput()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.