如何在Android中的EditText中阻止字符?

时间:2009-12-10 09:47:47

标签: android

如何屏蔽Android中EditText中的字符?

2 个答案:

答案 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"/>