Android实现记住密码功能
更新时间:2019年09月08日 17:04:27 作者:Philtell
这篇文章主要为大家详细介绍了Android实现记住密码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Android实现记住密码功能的具体代码,供大家参考,具体内容如下
LoginActivity.java
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
<?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>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
相关文章
Android ListView在Fragment中的使用示例详解
这篇文章主要介绍了Android ListView在Fragment中的使用,因为工作一直在用mvvm框架,因此这篇文章是基于mvvm框架写的,本文通过示例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-09-09
Android开发之CheckBox的简单使用与监听功能示例
这篇文章主要介绍了Android开发之CheckBox的简单使用与监听功能,结合简单实例形式分析了Android使用CheckBox控件的布局与功能实现技巧,需要的朋友可以参考下2017-07-07
Android `%d` 与 `1$%d` 格式化的区别解析
本文详细解析了Android开发中`%d`和`1$%d`格式化占位符的区别,并通过Kotlin代码示例帮助理解,`%d`按顺序填充参数,而`1$%d`按指定索引填充参数,后者在多语言场景下更灵活,感兴趣的朋友一起看看吧2025-03-03
Android UI系列-----ScrollView和HorizontalScrollView的详解
本篇文章主要是介绍的Android UI系列-----ScrollView和HorizontalScrollView,ScrollView和HorizontalScrollView都是布局容器,有需要的可以了解一下。2016-11-11
Android中通知Notification使用实例(振动、灯光、声音)
这篇文章主要介绍了Android中通知Notification使用实例,实现振动,灯光,声音等效果,感兴趣的小伙伴们可以参考一下2016-01-01
Android基于AlarmManager实现用户在线心跳功能示例
这篇文章主要介绍了Android基于AlarmManager实现用户在线心跳功能,结合检测用户在线功能实例形式分析了AlarmManager全局定时器的功能、使用方法及相关注意事项,需要的朋友可以参考下2017-10-10


最新评论