Android sharedPreferences实现记住密码功能
2019/7/7 20:41:56
本文主要是介绍Android sharedPreferences实现记住密码功能,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
实现记住密码功能,供大家参考,具体内容如下
编写界面交互代码:
package com.example.bz0209.login; import android.content.DialogInterface; 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.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends AppCompatActivity { private EditText username; private EditText password; private CheckBox ck; private SharedPreferences sharedPreferences; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); sharedPreferences=getSharedPreferences("remeberword",MODE_PRIVATE); Boolean isRemeber=sharedPreferences.getBoolean("remeberword",false); if(isRemeber) { String name=sharedPreferences.getString("name",""); String pass=sharedPreferences.getString("pass",""); username.setText(name); password.setText(pass); ck.setChecked(true); } } private void initView(){ username=(EditText)findViewById(R.id.username); password=(EditText)findViewById(R.id.password); ck= (CheckBox) findViewById(R.id.ck); } private void login(View view){//在layout中设置onClick事件 String name=username.getText().toString(); String pass=password.getText().toString(); if("admin".equals(name)&&"123".equals(pass)){ SharedPreferences.Editor editor=sharedPreferences.edit(); if(ck.isChecked()){ editor.putBoolean("remeberword",true); editor.putString("name",name); editor.putString("pass",pass); }else{ editor.clear(); } editor.commit(); } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于Android sharedPreferences实现记住密码功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-01-18android.permission.read_media_video
- 2024-01-18android_getaddrinfo failed eai_nodata
- 2024-01-18androidmo
- 2024-01-15Android下三种离屏渲染技术
- 2024-01-09Android 蓝牙使用
- 2024-01-06Android对接华为AI - 文本识别
- 2023-11-15代码安全之代码混淆及加固(Android)
- 2023-11-10简述Android语音播报TTS
- 2023-11-06Android WiFi工具类
- 2023-07-22Android开发未来的出路