如何屏蔽Android中EditText
中的字符?
答案 0 :(得分:5)
您可以使用InputFilter
限制EditText
上的输入。要么实现自己的,要么使用NumberKeyListener
进行数字输入。
答案 1 :(得分:0)
您也可以通过XML文件来完成此操作。我在这里如何显示,您可以尝试以下代码:-
<EditText
android:id="@+id/et_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="dd/mm/yy"
android:inputType="text"
android:textColor="@color/sky_blue"
android:fontFamily="@font/poppinsregular"
android:textSize="@dimen/sp_14"/>