服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android实现记住密码功能

Android实现记住密码功能

2022-10-31 13:56Philtell Android

这篇文章主要为大家详细介绍了Android实现记住密码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现记住密码功能的具体代码,供大家参考,具体内容如下

LoginActivity.java

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;
 
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
 
import com.wangdeqiang.www.chatwithrobot.R;
 
import static com.wangdeqiang.www.chatwithrobot.R.id.account;
 
/**
 * @author
 */
 
public class LoginActivity extends BaseActivity {
  private SharedPreferences pref;
 
  private SharedPreferences.Editor editor;
 
  private EditText accountEdit;
 
  private EditText passwordEdit;
 
  private Button login;
 
  private CheckBox rememberPass;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_login);
    pref = PreferenceManager.getDefaultSharedPreferences(this);
    accountEdit = (EditText) findViewById(account);
    passwordEdit = (EditText) findViewById(R.id.password);
    rememberPass = (CheckBox) findViewById(R.id.remember_pass);
    login = (Button) findViewById(R.id.login);
    boolean isRemeber = pref.getBoolean("remember_password",false);
    if(isRemeber) {
      //将账号和密码都设置到文本框中
      String account = pref.getString("account","");
      String password = pref.getString("password","");
      accountEdit.setText(account);
      passwordEdit.setText(password);
      rememberPass.setChecked(true);
    }
    login.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        String account = pref.getString("account", "").toString();
        String password = pref.getString("password", "").toString();
        //如果账号和密码是admin和123456,就认为登陆成功
        if (account.equals("admin") && password.equals("123456")) {
          editor = pref.edit();
          if (rememberPass.isChecked()) {
            editor.putBoolean("remember", false);
            editor.putString("account", account);
            editor.putString("password", password);
          } else {
            editor.apply();
          }
          editor.commit();
          Intent intent = new Intent(LoginActivity.this, Main3Activity.class);
          startActivity(intent);
          finish();
        } else {
          Toast.makeText(LoginActivity.this, "密码或者账号错误", Toast.LENGTH_SHORT).show();
        }
      }
    });
 
 
 
 
    }
   }

activity_login.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
 
<TableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:stretchColumns="1"
  >
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
 
    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="60dp"
      android:orientation="horizontal">
 
      <TextView
        android:layout_width="90dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="Account:"
        android:textSize="18sp" />
 
      <EditText
        android:id="@+id/account"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1" />
    </LinearLayout>
 
    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="60dp"
      android:orientation="horizontal">
 
      <TextView
        android:layout_width="90dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="Password"
        android:textSize="18sp" />
 
      <EditText
        android:id="@+id/password"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:inputType="textPassword" />
    </LinearLayout>
  </LinearLayout>
  <TableRow>
    <CheckBox
      android:id="@+id/remember_pass"
      android:layout_height="wrap_content"
      />
    <TextView
      android:layout_height="wrap_content"
      android:text="Remeber password"
      />
  </TableRow>
  <Button
    android:id="@+id/login"
    android:layout_height="wrap_content"
    android:layout_span="2"
    android:text="Login"
    />
</TableLayout>

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

原文链接:https://blog.csdn.net/CCCrunner/article/details/72765937

延伸 · 阅读

精彩推荐