作者:jinyan胡_435 | 来源:互联网 | 2023-08-30 12:41
本文主要分享【android开发的书】,技术文章【Android开发学习日记--登录界面】为【清梦2020】投稿,如果你遇到Android开发学习相关问题,本文相关知识或能到你。android开发的
本文主要分享【android开发的书】,技术文章【Android开发学习日记--登录界面】为【清梦2020】投稿,如果你遇到Android开发学习相关问题,本文相关知识或能到你。
android开发的书
一、效果展示
二、实现步骤
首先介绍下实现的步骤:
首先是设置焦点变更监听器,当输入完手机号码点击下一栏时,检查手机号是否有效。如果无效的手机号,会实现焦点重新返回到手机号码栏(可以参考我的另一篇文章)设置文本变更变化监听器,当手机号输入到11位后,也就是输入完成后,实现自动收起键盘功能。(具体讲解同样是参考上一篇文章)设置单选按钮勾选变化监听器,实现验证码登陆和密码登陆两种方式的切换。设置获取验证码按钮的点击事件,使用自定义类MyCountDownTimer继承CountDownTimer,并实现相应的方法,为获取验证码按钮实现动态效果。使用sharedPreferences记住密码。
具体实现代码都有注释,请直接食用:
XML代码:
Java代码:
import android.content.SharedPreferences;
import android.os.Bundle;
import android.os.CountDownTimer;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.RadioGroup;
import android.widget.Toast;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import com.example.helloworld.util.HideInputMethod;
public class MainActivity extends AppCompatActivity implements View.OnFocusChangeListener {
private EditText et_phone;
private EditText et_password;
private EditText et_verification;
private SharedPreferences sharedPreferences;
private final MyCountDownTimer myCountDownTimer=new MyCountDownTimer(60000,1000);
private Button bt_CountDown;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
RadioGroup r=findViewById(R.id.radio);
LinearLayout l_verification=findViewById(R.id.l_verification);
LinearLayout l_password=findViewById(R.id.l_password);
et_phOne= findViewById(R.id.et_phone);
et_password = findViewById(R.id.et_password);
et_verification = findViewById(R.id.et_verification);
CheckBox cb_remember_the_password=findViewById(R.id.cb_remember_the_password);
CheckBox cb_consent_accord=findViewById(R.id.cb_consent_accord);
Button bt_login=findViewById(R.id.bt_login);
Button bt_verify=findViewById(R.id.bt_verify);
sharedPreferences = getSharedPreferences("password",MODE_PRIVATE);
String phOne=sharedPreferences.getString("phone",null);
String password=sharedPreferences.getString("password",null);
if(phone!=null) et_phone.setText(phone);
if(password!=null)
{
r.check(R.id.r_password);
et_password.setText(password);
}
//设置密码或验证码的单选状态改变监听器
r.setOnCheckedChangeListener((group, checkedId) -> {
if(checkedId==R.id.r_verification)
{
l_password.setVisibility(View.GONE);
l_verification.setVisibility(View.VISIBLE);
cb_remember_the_password.setVisibility(View.GONE);
}
else
{
l_verification.setVisibility(View.GONE);
l_password.setVisibility(View.VISIBLE);
cb_remember_the_password.setVisibility(View.VISIBLE);
}
});
//文本框设置文本改变监听器,到最大长度后自动收起键盘
et_phone.addTextChangedListener(new HideTextWatcher(et_phone,11));
et_password.addTextChangedListener(new HideTextWatcher(et_password,16));
et_verification.addTextChangedListener(new HideTextWatcher(et_verification,6));
//设置焦点改变监听器
et_password.setOnFocusChangeListener(this);
et_verification.setOnFocusChangeListener(this);
//设置获取验证码按钮的点击事件
bt_verify.setOnClickListener(v->{
if(Check(et_phone))
{
bt_CountDown=bt_verify;
myCountDownTimer.start();
}
});
//设置登陆按钮的点击事件
bt_login.setOnClickListener(v -> {
if(cb_consent_accord.isChecked()) //判断是否勾选用户协议
{
if(r.getCheckedRadioButtonId()==R.id.r_password) //判断登陆类型
{
String p=et_password.getText().toString();
String ph=et_phone.getText().toString();
SharedPreferences.Editor editor=sharedPreferences.edit();
if(p.length()>=8)
{ //不可能输入超过16位,因为编辑框限制了最大长度
if(cb_remember_the_password.isChecked())
{
//开始记住密码,我们默认密码正确
editor.putString("phone",ph);
editor.putString("password",p);
editor.commit();
}
else //清除密码
{
editor.remove("phone");
editor.remove("password");
editor.commit();
}
Toast.makeText(this, "登陆成功!等待页面跳转...", Toast.LENGTH_SHORT).show();
}
else
Toast.makeText(this, "请输入正确的密码!", Toast.LENGTH_SHORT).show();
}
else
{
String verification=et_verification.getText().toString();
if(verification.length()==6)
Toast.makeText(this, "登陆成功!等待页面跳转...", Toast.LENGTH_SHORT).show();
else
Toast.makeText(this, "验证码错误!", Toast.LENGTH_SHORT).show();
}
}
else
Toast.makeText(this, "请同意并勾选用户协议和隐私政策协议", Toast.LENGTH_SHORT).show();
});
}
private Boolean Check(EditText et)
{
if(et.getId()==R.id.et_phone)
{
String text=et.getText().toString();
if(text.isEmpty()||text.length()<11)
{
et.requestFocus();
Toast.makeText(this, "请输入11位手机号", Toast.LENGTH_SHORT).show();
return false;
}
else return true;
}
else return true;
}
@Override //重写焦点变换监听器
public void onFocusChange(View v, boolean hasFocus) {
if(v.getId()==R.id.et_phone&&!hasFocus)
Check(et_phone);
}
private class HideTextWatcher implements TextWatcher {
EditText editText;
int maxLength;
HideTextWatcher(EditText ed,int max)
{
editText=ed;
maxLength=max;
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
public void onTextChanged(CharSequence s, int start, int before, int count) {}
public void afterTextChanged(Editable s) {
if(s.length()==maxLength) //隐藏输入法
HideInputMethod.hideInput(MainActivity.this,editText);
}
}
private class MyCountDownTimer extends CountDownTimer
{
public MyCountDownTimer(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onTick(long millisUntilFinished) {
Log.e("计时器","正在运行");
bt_CountDown.setClickable(false);
bt_CountDown.setText(millisUntilFinished/1000+"秒");
}
@Override
public void onFinish() {
bt_CountDown.setClickable(true);
bt_CountDown.setText("重新获取");
}
}
}
记录下遇到的问题:
当Button的android:background属性是默认值的时候,Button按钮是会有空白间隙的,是padding和margin的问题。情况如下:
自定义的背景就会解决这个问题:
代码如下:
btn_selector.xml
btn_press.xml
btn_normal.xml
自定义的复选框:
checkbox.xml
本文《Android开发学习日记--登录界面》版权归清梦2020所有,引用Android开发学习日记--登录界面需遵循CC 4.0 BY-SA版权协议。