PHP
·
发表于 5年以前
·
阅读量:8282
@TargetApi(Build.VERSION_CODES.CUPCAKE)
public static void showSoftInput(Context context, EditText edit){
edit.setFocusable( true );
edit.setFocusableInTouchMode( true );
edit.requestFocus();
InputMethodManager inputManager = (InputMethodManager) context.getSystemService(Context.INPUT\_METHOD\_SERVICE);
inputManager.showSoftInput(edit, 0 );
}