Android开发中实现用户注册和登陆的代码实例分享

 更新时间:2015年12月01日 16:13:11   投稿:goldensun  
这篇文章主要介绍了Android开发中实现用户注册和登陆的代码实例分享,只是实现基本功能,界面华丽度就请忽略啦XD 需要的朋友可以参考下

在android的应用中越来越多的包含了网络互动功能,这就带来了注册,登陆账号功能。本文完整的介绍对话框的方式实现用户登陆功能。

登陆效果: 应用程序判断当前用户还未登陆,弹出登陆对话框,用户输入账号和密码信息后,传到服务器验证,验证成功后,现实Toast 成功信息,并转到其他界面。

2015121161004202.jpg (480×800)

注册效果:用户如没有账号,则点击登陆对话框的 "没有账号,快速注册账号", 弹出注册界面,用户输入注册信息,点击注册按钮,注册成功后,弹出toast信息"注册成功",完成注册后,转到其他功能界面。

2015121161036365.jpg (480×800)

整个功能大体上分两块:登陆对话框:输入登陆信息,实现登陆功能,转到注册界面。注册对话框:输入注册信息,实现注册功能。

对话框界面布局xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">
  
  <TextView
   android:id="@+id/txt_loginerror"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textColor="#ff0000"
   android:text="输入的账号和密码不正确"
   android:gravity="left"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:visibility="invisible"
  />
  
  
  <TextView
   android:id="@+id/username"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:text="账号"
   android:gravity="left"
   android:textAppearance="?android:attr/textAppearanceMedium" 
  />
   
  <EditText
   android:id="@+id/txt_username"
   android:layout_height="wrap_content"
   android:layout_width="fill_parent"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:autoText="false"
   android:capitalize="none"
   android:gravity="fill_horizontal"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   />
  <TextView
   android:id="@+id/password"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:text="密码"
   android:gravity="left"
   />
  <EditText
   android:id="@+id/txt_password"
   android:layout_height="wrap_content"
   android:layout_width="fill_parent"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:autoText="false"
   android:capitalize="none"
   android:gravity="fill_horizontal"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   />
   
    <TextView
   android:id="@+id/txt_toregister"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textColor="#2200C1"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:text="没有账号?快速注册"
   android:gravity="left"
   />
   
</LinearLayout>

后台业务逻辑:

/*
  * 创建用户登陆的对话框
  * 登陆界面包含两个按钮
  * 1按钮为登陆
  * 2按钮为不登陆试玩
  * */
  private void CreateLoginAlert()
  {
    AlertDialog.Builder ad =new AlertDialog.Builder(this);
    ad.setTitle("账号登陆");
    ad.setView(ViewUtility.GetView(this,R.layout.sub_logindialog));
    adi= ad.create();
    
  
  /*   
    */
    adi.setButton("登陆", new OnClickListener(){
      @Override
      public void onClick(DialogInterface arg0, int arg1) {
      
        EditText password=  (EditText)adi.findViewById(R.id.txt_password);
        EditText account =(EditText)adi.findViewById(R.id.txt_username);
        
        PassWord=password.getText().toString();
        Account=account.getText().toString();
        //生成登陆对话框
        m_Dialog=ProgressDialog.show(Main.this, "请等待...", "正在为你登陆...",true);
        mRedrawHandler.sleep(100);    
      }
    });
    
    adi.setButton2("试 玩", new OnClickListener(){
      @Override
      public void onClick(DialogInterface arg0, int arg1) {
        ViewUtility.NavigateActivate(Main.this, SelectTheme.class);
      }
    });
    
    adi.show(); 
    
    
    //设置注册点击事件
    TextView register=(TextView)adi.findViewById(R.id.txt_toregister);
    register.setOnClickListener(new TextView.OnClickListener()
    {
     public void onClick(View v){
       //创建注册对话框
      CreateRegisterAlert();
       adi.dismiss();
       
     }
   });
    
  }
  
  /*
  *定时线程做验证用
  * */
  private RefreshHandler mRedrawHandler = new RefreshHandler();
  
  class RefreshHandler extends Handler {
    @Override
    public void handleMessage(Message msg) {
       
      try{
        
        //调用网络接口,实现登陆指令
       Boolean flags=  UserDataServiceHelper.Login(Account, PassWord);  
       if(flags)  
       {
        //保存登陆信息
        UserDataWriteHelper uw=new UserDataWriteHelper(Main.this);
        uw.SaveUserInfoInDB("xuwenbing", Account);
        //提示登陆成功
        Toast.makeText(Main.this, "登陆成功", Toast.LENGTH_SHORT).show();    
        //转到主题页面
         ViewUtility.NavigateActivate(Main.this, SelectTheme.class);
       }else
       {
        //失败 显示错误信息
        Toast.makeText(Main.this, "登陆失败", Toast.LENGTH_SHORT).show();
        adi.show();
        adi.findViewById(R.id.txt_loginerror).setVisibility(View.VISIBLE);
        }
      }
      catch(Exception e)
      {
        e.printStackTrace();              
      }
      finally{
        m_Dialog.dismiss();    
      }
    }
    public void sleep(long delayMillis) {
      this.removeMessages(0);
      sendMessageDelayed(obtainMessage(0), delayMillis);
    }
  };

对话框界面布局xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">
  
  <LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:gravity="center"
  >
  <TextView
   android:id="@+id/txt_loginerror"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textColor="#ff0000"
   android:text="输入的账号和密码不正确"
   android:gravity="left"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:visibility="invisible"
  />
  </LinearLayout>
  
  <LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  
  >
  <TextView
   android:id="@+id/username"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:text="账号"
   android:gravity="left"
   android:textAppearance="?android:attr/textAppearanceMedium" 
  />
   
  <EditText
   android:id="@+id/txt_username"
   android:layout_height="wrap_content"
   android:layout_width="fill_parent"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:autoText="false"
   android:capitalize="none"
   android:gravity="fill_horizontal"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   />
   </LinearLayout>
   
    <LinearLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  
  >
  <TextView
   android:id="@+id/password"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:text="密码"
   android:gravity="left"
   />
  <EditText
   android:id="@+id/txt_password"
   android:layout_height="wrap_content"
   android:layout_width="fill_parent"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:autoText="false"
   android:capitalize="none"
   android:gravity="fill_horizontal"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   />
   </LinearLayout>
    <LinearLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:orientation="horizontal"
  >
    <TextView
   android:id="@+id/nicename"
   android:layout_height="wrap_content"
   android:layout_width="wrap_content"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   android:text="昵称"
   android:gravity="left"
   />
  <EditText
   android:id="@+id/txt_nicename"
   android:layout_height="wrap_content"
   android:layout_width="fill_parent"
   android:layout_marginLeft="20dip"
   android:layout_marginRight="20dip"
   android:autoText="false"
   android:capitalize="none"
   android:gravity="fill_horizontal"
   android:textAppearance="?android:attr/textAppearanceMedium" 
   />
  
  </LinearLayout>
   
</LinearLayout>

后台业务逻辑:

/*创建注册对话框*/
  private void CreateRegisterAlert()
  {
    //registerdialog
    AlertDialog.Builder ad =new AlertDialog.Builder(this);
    ad.setTitle("注册账号");
    ad.setView(ViewUtility.GetView(this,R.layout.sub_registerdialog));
    registerdialog= ad.create();
    
    registerdialog.setButton("注册", new OnClickListener(){
      @Override
      public void onClick(DialogInterface arg0, int arg1) {
      
        EditText password=  (EditText)registerdialog.findViewById(R.id.txt_password);
        EditText account =(EditText)registerdialog.findViewById(R.id.txt_username);
        EditText nicename =(EditText)registerdialog.findViewById(R.id.txt_nicename);
        
        PassWord=password.getText().toString();
        Account=account.getText().toString();
        NiceName=nicename.getText().toString();
        //生成注册对话框
        m_Dialog=ProgressDialog.show(Main.this, "请等待...", "正在为你注册...",true);
        mRegsiterHandler.sleep(100);    
      }
    });
    
    registerdialog.setButton2("试 玩", new OnClickListener(){
      @Override
      public void onClick(DialogInterface arg0, int arg1) {
        ViewUtility.NavigateActivate(Main.this, SelectTheme.class);
      }
    });
    
    registerdialog.show();   
  }
  /*
  *定时注册程序
  * */
  private RegsiterHandler mRegsiterHandler = new RegsiterHandler();
  
  class RegsiterHandler extends Handler {
    @Override
    public void handleMessage(Message msg) {
       
      try{
        
        //调用网络接口,实现注册指令
       Boolean flags=  UserDataServiceHelper.Register(Account, PassWord,NiceName);  
       if(flags)  
       {
        //保存注册信息
        UserDataWriteHelper uw=new UserDataWriteHelper(Main.this);
        uw.SaveUserInfoInDB("xuwenbing", Account);
        //提示注册成功
        Toast.makeText(Main.this, "注册成功", Toast.LENGTH_SHORT).show();    
        //转到主题页面
         ViewUtility.NavigateActivate(Main.this, SelectTheme.class);
       }else
       {
        //失败 显示错误信息
        Toast.makeText(Main.this, "注册失败", Toast.LENGTH_SHORT).show();
        registerdialog.show();
        registerdialog.findViewById(R.id.txt_loginerror).setVisibility(View.VISIBLE);
        }
      }
      catch(Exception e)
      {
        e.printStackTrace();              
      }
      finally{
        m_Dialog.dismiss();    
      }
    }
    public void sleep(long delayMillis) {
      this.removeMessages(0);
      sendMessageDelayed(obtainMessage(0), delayMillis);
    }
  };

两个网络接口功能:

//调用网络接口,实现登陆指令
Boolean flags=  UserDataServiceHelper.Login(Account, PassWord); 
//调用网络接口,实现注册指令
Boolean flags=  UserDataServiceHelper.Register(Account, PassWord,NiceName); 

相关文章

  • elasticsearch的灵魂唯一master选举机制原理分析

    elasticsearch的灵魂唯一master选举机制原理分析

    这篇文章主要为大家介绍了elasticsearch的灵魂唯一master选举机制原理分析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-04-04
  • Spring Boot中优雅地处理参数传递的技巧分享

    Spring Boot中优雅地处理参数传递的技巧分享

    最近一直在学习Spring Boot,今天将其中的从前台过来的参数传递总结一下,下面这篇文章主要给大家介绍了关于Spring Boot中优雅地处理参数传递的技巧,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2023-05-05
  • springboot整合kaptcha验证码的示例代码

    springboot整合kaptcha验证码的示例代码

    kaptcha是一个很有用的验证码生成工具,本篇文章主要介绍了springboot整合kaptcha验证码的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-06-06
  • Java 动态加载jar和class文件实例解析

    Java 动态加载jar和class文件实例解析

    这篇文章主要介绍了Java 动态加载jar和class文件实例解析,分享了相关代码示例,小编觉得还是挺不错的,具有一定借鉴价值,需要的朋友可以参考下
    2018-02-02
  • 图解JAVA中Spring Aop作用

    图解JAVA中Spring Aop作用

    这篇文章主要介绍了Java的Spring框架下的AOP的作用,需要的朋友可以参考
    2017-04-04
  • Spring 开发之组件赋值的实现方法

    Spring 开发之组件赋值的实现方法

    这篇文章主要介绍了Spring 开发之组件赋值的实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-09-09
  • 使用IntelliJ IDEA搭建SSM框架的图文教程

    使用IntelliJ IDEA搭建SSM框架的图文教程

    本文通过图文并茂的形式给大家介绍了使用IntelliJ IDEA搭建SSM框架的教程,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
    2018-05-05
  • Java实现为Word每一页设置不同图片水印的效果

    Java实现为Word每一页设置不同图片水印的效果

    Word中设置水印时,可加载图片设置为水印效果,但通常添加水印效果时,会对所有页面都设置成统一效果。所以本文为大家介绍了一个方法,可以实现对每一页或者某个页面设置不同的水印效果,需要的可以参考一下
    2022-02-02
  • debug模式迟迟不能启动问题及解决

    debug模式迟迟不能启动问题及解决

    在使用Debug模式进行代码测试时,由于设置了过多的断点,导致程序加载缓慢甚至无法启动,解决此问题的方法是取消不必要的断点,通过IDE的断点管理功能,检查并移除问题断点,从而优化调试效率,分享此经验希望能帮助遇到相同问题的开发者
    2022-11-11
  • Spring+SpringMVC+MyBatis深入学习及搭建(三)之MyBatis全局配置文件解析

    Spring+SpringMVC+MyBatis深入学习及搭建(三)之MyBatis全局配置文件解析

    这篇文章主要介绍了Spring+SpringMVC+MyBatis深入学习及搭建(三)之MyBatis全局配置文件解析,需要的朋友可以参考下
    2017-05-05

最新评论