mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
dismissSoftInput implemented
This commit is contained in:
15
utils/utils.d.ts
vendored
15
utils/utils.d.ts
vendored
@ -66,6 +66,21 @@
|
||||
*/
|
||||
export function getApplicationContext(): android.content.Context;
|
||||
|
||||
/**
|
||||
* Gets the native Android input method manager.
|
||||
*/
|
||||
export function getInputMethodManager(): android.view.inputmethod.InputMethodManager;
|
||||
|
||||
/**
|
||||
* Hides the soft input method, ususally a soft keyboard.
|
||||
*/
|
||||
export function dismissSoftInput(nativeView: android.view.View): void;
|
||||
|
||||
/**
|
||||
* Shows the soft input method, ususally a soft keyboard.
|
||||
*/
|
||||
export function showSoftInput(nativeView: android.view.View): void;
|
||||
|
||||
/**
|
||||
* Utility module dealing with some android collections.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user