(一)控制EditText只能输入数字和字母
<EditText
android:id="@+id/ET_password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:digits="@string/filter_vcode"
android:layout_toRightOf="@+id/IM_icon_password"
android:background="@null"
android:hint="@string/password_hint"
然后在string里面添加: <!-- 输入框过滤 -->
<string name="filter_vcode">0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</string>
(二)EditText默认是有个框,很丑,去掉框的话设置:
android:background="@null
(三)输入提示:
android:hint="@string/password_hint"