项目场景:
安卓开发过程中,为了方便使用者使用输入,对于需要输入数字的则弹出数字键盘。
问题描述
根据输入框需要填充的内容选择弹出键盘的类型
xml里面只需要写这个编辑框的id
<EditText
android:id="@+id/sr_width"
android:layout_width="0dp"
android:onClick="@{() ->presenter.selectText('W')}"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@={model.width}"
android:background="@null"
android:textColor="@color/black"
android:textSize="26sp" />
在我们的Activity类中,通过mBinding来得到编辑框,然后设置弹出键盘的类型
//弹出数字键盘(宽高)
mBinding.srWidth.setRawInputType(InputType.TYPE_CLASS_NUMBER);
mBinding.srHeight.setRawInputType(InputType.TYPE_CLASS_NUMBER);
标签:mBinding,layout,安卓,数字键盘,setRawInputType,开发,android
From: https://blog.csdn.net/qq_52526777/article/details/142617915