博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
存储登录
阅读量:4952 次
发布时间:2019-06-11

本文共 3657 字,大约阅读时间需要 12 分钟。

 

登录layout

 

注册layout

package com.hanqi.zuoyee;import android.content.Intent;import android.content.SharedPreferences;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.view.View;import android.widget.EditText;import android.widget.Toast;public class cunchu2denglu extends AppCompatActivity {    EditText et1,et2;    String s1,s2;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.cunchu2denglu);        et1=(EditText)findViewById(R.id.et1);        et2=(EditText)findViewById(R.id.et2);    }    public  void b1(View v){        s1=et1.getText().toString();        s2=et2.getText().toString();        if(s1.trim().length()==0){            Toast.makeText(cunchu2denglu.this, "正确输入账号", Toast.LENGTH_SHORT).show();        }        String s11,s22;        SharedPreferences s=getSharedPreferences("zhanghao",MODE_PRIVATE);        s11=s.getString("zhanghao","");        s22=s.getString("mima","");        if(s11.trim().length()==0){            Toast.makeText(cunchu2denglu.this, "请注册账号", Toast.LENGTH_SHORT).show();            return;        }        if(!s11.equals(s1)){            Toast.makeText(cunchu2denglu.this, "请正确输入账号", Toast.LENGTH_SHORT).show();            Toast.makeText(cunchu2denglu.this, s1, Toast.LENGTH_SHORT).show();            return;        }        if(!s2.equals(s22)){            Toast.makeText(cunchu2denglu.this, "请正确输入密码", Toast.LENGTH_SHORT).show();        }        else {            Toast.makeText(cunchu2denglu.this, "登陆成功", Toast.LENGTH_SHORT).show();        }    }    public  void b2(View v){        Intent intent=new Intent(cunchu2denglu.this,cunchu2zhuce.class);       startActivity(intent);    }}

 

登录java

package com.hanqi.zuoyee;import android.content.Intent;import android.content.SharedPreferences;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.widget.EditText;import android.widget.Toast;public class cunchu2zhuce extends AppCompatActivity {EditText et1,et2,et22;    String s1,s2,s22;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_cunchu2zhuce);        et1=(EditText)findViewById(R.id.et1);        et2=(EditText)findViewById(R.id.et2);        et22=(EditText)findViewById(R.id.et3);    }    public void b1(View v){        Intent intent=new Intent(cunchu2zhuce.this,cunchu2denglu.class);        startActivity(intent);    }    public void b2(View v){        s1=et1.getText().toString();        s2=et2.getText().toString();        s22=et22.getText().toString();        if(s1.trim().length()==0){            Toast.makeText(cunchu2zhuce.this, "请正确输入账号", Toast.LENGTH_SHORT).show();            return;        }        if(s2.trim().length()==0){            Toast.makeText(cunchu2zhuce.this, "请正确输入密码", Toast.LENGTH_SHORT).show();            return;        }        if(!s2.equals(s22)){            Toast.makeText(cunchu2zhuce.this, "两次密码输入不一致", Toast.LENGTH_SHORT).show();            return;        }        SharedPreferences sp=getSharedPreferences("zhanghao",MODE_PRIVATE);        SharedPreferences.Editor e=sp.edit();        e.putString("zhanghao",s1);        e.putString("mima", s2);        e.commit();        Toast.makeText(cunchu2zhuce.this, "注册成功", Toast.LENGTH_SHORT).show();        Intent intent=new Intent(cunchu2zhuce.this,cunchu2denglu.class);        startActivity(intent);    }}

 

注册java

转载于:https://www.cnblogs.com/storm47/p/5533549.html

你可能感兴趣的文章
最大熵模型 二
查看>>
[Freemarker]自定义时间戳函数
查看>>
selenium鼠标悬停
查看>>
appium api 文档
查看>>
pathon连接mysql->AttributeError: 'str' object has no attribute 'decode'
查看>>
Salt-ssh批量部署minion
查看>>
iOS学习笔记 ——Trip to iOS
查看>>
[开发笔记]UIApplication介绍
查看>>
GPIO外部中断
查看>>
ios 第三方qq授权登陆,第一次登陆后,再次登陆,失效
查看>>
扔鸡蛋问题具体解释(Egg Dropping Puzzle)
查看>>
express: command not found.
查看>>
TinyXml高速入门(一)
查看>>
点击表格的单元格时实现变颜色,通过for循环为每个单元格添加一个onclick事件...
查看>>
webform Response的一些成员
查看>>
Countries in War(强连通分量及其缩点)
查看>>
Eclipse中用Link方式安装Maven插件(转载)
查看>>
Android菜鸟的成长笔记(11)——Android中的事件处理
查看>>
JStrom的zk数据
查看>>
使用“dotconnect for oracle”绕过oracle客户端连接Oracle数据库
查看>>