Android:edittext中的最小密码长度

前端之家收集整理的这篇文章主要介绍了Android:edittext中的最小密码长度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
android中是否有任何简单的方法在edittext中设置最小密码长度?在xml中,只有最大长度选项但不是最小值.

设置ems和宽度等选项适合限制长度但是何时设置最小长度???

我在文档中找到了这个:

DevicePolicyManager mDPM;
ComponentName mDeviceAdminSample;
int pwLength;
...
mDPM.setPasswordMinimumLength(mDeviceAdminSample,pwLength);

但除此之外还有更简单的方法吗?

解决方法

用户单击提交时,您可以对edittext进行一些验证.
public void onSubmitClicked(View v) 
{ 
    String pass = passwordEditText.getText().toString(); 
    if(TextUtils.isEmpty(pass) || pass.length() < [YOUR MIN LENGTH]) 
    { 
        passwordEditText.setError("You must have x characters in your password"); 
        return; 
    }

    //continue processing

}
原文链接:https://www.f2er.com/android/313798.html

猜你在找的Android相关文章