• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Hide softkeys?

codyedmonson

Android Enthusiast
I would like to know of any apps/xposed modules that hide the softkeys completely, like not fade out and dissapear but slide down to where you swipe up from bottoms of screen and they show up again. Anybody know of any such apps?
 
Unless you program a keyboard replacement I think the only method is something like this:

public static void hideKeyboard(View v)
{
InputMethodManager imm = (InputMethodManager) v.getContext()
.getSystemService( Context.INPUT_METHOD_SERVICE );
imm.hideSoftInputFromWindow( v.getWindowToken(), 0 );
}
 
Back
Top Bottom