android小知识

1.editext自动弹出键盘,并且可以设置键盘种类

//调用地方
        mEdt = (EditText) findViewById(R.id.edit_activity);
        mEdt.setInputType(InputType.TYPE_CLASS_NUMBER);
        showSoftInputFromWindow(this,mEdt);
//弹出键盘的方法
public static void showSoftInputFromWindow(Activity activity, EditText editText) {
        editText.setFocusable(true);
        editText.setFocusableInTouchMode(true);
        editText.requestFocus();
 activity.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
 }

你可能感兴趣的:(android小知识)