我有以下 EditText,它的字符需要隐藏,因为它是密码。我可以通过以下方式做到这一点。
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Please Enter Password/Pin"
android:inputType="textPassword"
>
我想将键盘设置为数字,因为所有密码都是数字,但是当我执行以下操作时,会显示数字。我怎样才能实现两者?
passwordPin = (EditText)findViewById(R.id.password);
passwordPin.setInputType(InputType.TYPE_CLASS_NUMBER);