EditText 初始化,默认不弹出小键盘

在EditText 的 父控件上添加          android:focusableInTouchMode="true"      能解决问题

 

//阻止输入法弹出

 et_sharearea_q.setInputType(InputType.TYPE_NULL);

 EditText有焦点(focusable为false)

 android:numeric="integer"表示只允许输入数字

 

你可能感兴趣的:(android,EditText,键盘)