欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android登陆界面用户名检测功能

程序员文章站 2023-12-09 18:17:45
今天分享一下登陆界面用户登录名的检测,大家都知道如果在服务器端进行所有用户名的检测是比较浪费资源的。用户每点击一次登陆就要发到服务端去检测,对于服务端来说负荷是比较大的。所...

今天分享一下登陆界面用户登录名的检测,大家都知道如果在服务器端进行所有用户名的检测是比较浪费资源的。用户每点击一次登陆就要发到服务端去检测,对于服务端来说负荷是比较大的。所以呢在客服端对用户的非法信息进行简单的过滤是非常有必要的。

源码下载:android用户名检测

首先看一下效果:

Android登陆界面用户名检测功能 

当用户输入的用户名长度小于3,或者大于9时将出现红色提示,并且登陆按钮不可点击。

Android登陆界面用户名检测功能

当输入的用户名大在合法区间则提示消失,如果密码不为空则登陆按钮可点击
虽然功能很小却用到了不少的东西:

  • edittext失去焦点事件的监听
  • 获取输入的字符并且检测长度
  • 当用户名不合法时出现提示
  • 设置登录按钮的不可点击

接下来看一下源码,为了是登陆界面更加美观,我对登陆控件进行了圆形化处理,也就是开源醒目circleimageview 项目主页地址:https://github.com/hdodenhof/circleimageview

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 android:background="@color/colorlogin"

 >

 <!-- login progress -->
 <progressbar
 android:id="@+id/login_progress"
 style="?android:attr/progressbarstylelarge"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_marginbottom="8dp"
 android:visibility="gone" />
 <relativelayout
 android:layout_width="match_parent"
 android:layout_height="180dp"

 android:id="@+id/head_img"
 >

 <de.hdodenhof.circleimageview.circleimageview
  android:layout_width="80dp"
  android:layout_height="80dp"
  android:src="@mipmap/nav_head"
  android:layout_alignparentbottom="true"
  android:layout_centerhorizontal="true"
  android:layout_marginbottom="25dp" />
 </relativelayout>
 <linearlayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:paddingbottom="20dp"
 android:orientation="vertical">
 <edittext
  android:id="@+id/et_user"
  android:layout_width="match_parent"
  android:layout_height="60dp"
  android:hint="@string/username"
  android:background="@color/colorloginform"
  android:layout_marginbottom="5dp"
  />
 <textview
  android:id="@+id/tv_tip"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textcolor="@color/error"
  />
 <edittext
  android:id="@+id/et_pass"
  android:layout_width="match_parent"
  android:layout_height="60dp"
  android:background="@color/colorloginform"
  android:hint="@string/password"
  android:paddingtop="1dp"
  />
 </linearlayout>
 <button
 android:id="@+id/button"
 android:layout_width="match_parent"
 android:layout_height="50dp"
 android:background="@color/loginbutton"
 android:text="@string/loginbutton"
 android:textcolor="@color/colorloginform"
 />

</linearlayout>

然后修改mainavtivity.class:

public class mainactivity extends appcompatactivity {
 edittext etuser;
 edittext etpassword;
 textview tvtip;
 button button;
 @override
 protected void oncreate(bundle savedinstancestate) {
 super.oncreate(savedinstancestate);
 setcontentview(r.layout.activity_main);
 //初始化view控件
 findview();
 //用于检测输入的用户名操作
 checklength();
 }

 private void checklength() {
 //为etuser设置焦点改变监听事件
 etuser.setonfocuschangelistener(new view.onfocuschangelistener(){
  @override
  public void onfocuschange(view v, boolean hasfocus) {
  //如果失去焦点则进行用户名的检测
  if(etuser.hasfocus()==false){
   //如果用户名长度小于3或者大于9,则提示用户名错误且登陆不可点击
   if(etuser.gettext().tostring().length()>9||etuser.gettext().tostring().length()<3){
   tvtip.settext("用户名不合法!");
   button.setclickable(false);
   }else{
   //如果用户名合法且密码不为空,设置提示字体消失按钮可点击
   if(etpassword.gettext().tostring()!=""){
   button.setclickable(true);
   tvtip.settext("");
   }
  }
  }


  }
 });
 }

 private void findview() {
 etuser= (edittext) findviewbyid(r.id.et_user);
 etpassword= (edittext) findviewbyid(r.id.et_pass);
 tvtip= (textview) findviewbyid(r.id.tv_tip);
 button= (button) findviewbyid(r.id.button);
 }
}

整个代码的核心是编辑框的焦点改变的监听,然后对用户名进行判断。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。