InputMethodManager.SwitchToNextInputMethod(IBinder, Boolean) 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.
Force switch to the next input method and subtype.
[Android.Runtime.Register("switchToNextInputMethod", "(Landroid/os/IBinder;Z)Z", "")]
public bool SwitchToNextInputMethod (Android.OS.IBinder? imeToken, bool onlyCurrentIme);
[<Android.Runtime.Register("switchToNextInputMethod", "(Landroid/os/IBinder;Z)Z", "")>]
member this.SwitchToNextInputMethod : Android.OS.IBinder * bool -> bool
Parameters
- imeToken
- IBinder
Supplies the identifying token given to an input method when it was started, which allows it to perform this operation on itself.
- onlyCurrentIme
- Boolean
if true, the framework will find the next subtype which belongs to the current IME
Returns
true if the current input method and subtype was successfully switched to the next input method and subtype.
- Attributes
Remarks
Force switch to the next input method and subtype. If there is no IME enabled except current IME and subtype, do nothing.
This member is deprecated. Use InputMethodService#switchToNextInputMethod(boolean)
instead. This method was intended for IME developers who should be accessing APIs through the service. APIs in this class are intended for app developers interacting with the IME.
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.