Labels

Sunday 20 July 2014

Android Key board raising and hiding Programmatically


// Android key board raising Programmatically
InputMethodManager imm = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm.isAcceptingText())
{
} else
{
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}

// Android key board hiding Programmatically getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

No comments:

Post a Comment