美文网首页
Android EditText设置输入字母、数字、特殊字符

Android EditText设置输入字母、数字、特殊字符

作者: hao_developer | 来源:发表于2020-09-12 15:45 被阅读0次

布局+代码设置显示

 <EditText
            android:id="@+id/etName"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@null"
            android:ellipsize="end"
            android:inputType="textPassword"
            android:digits="+-_0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLIMNOPQRSTUVWXYZ"
            android:hint="请输入昵称"
            android:paddingLeft="@dimen/dp_10"
            android:paddingRight="@dimen/dp_20"
            android:singleLine="true"
            android:textColor="@color/hui_ff6"
            android:textColorHint="@color/hui_ff6"
            android:textSize="@dimen/sp_15" />

代码设置可现实

etName.transformationMethod = HideReturnsTransformationMethod.getInstance()

以上是我所想到的解决方案,有更好的解决方案,希望码农提供下哈

相关文章

网友评论

      本文标题:Android EditText设置输入字母、数字、特殊字符

      本文链接:https://www.haomeiwen.com/subject/zppwektx.html