dismissSoftInput implemented

This commit is contained in:
Vladimir Enchev
2015-10-19 14:55:06 +03:00
parent 66a834ce10
commit 343265c571
7 changed files with 68 additions and 10 deletions

15
utils/utils.d.ts vendored
View File

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