您好,登錄后才能下訂單哦!
這篇文章主要講解了“android怎么實(shí)現(xiàn)記住用戶名和密碼以及自動(dòng)登錄功能”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“android怎么實(shí)現(xiàn)記住用戶名和密碼以及自動(dòng)登錄功能”吧!
package com.sdufe.login; import android.app.Activity;import android.content.Context;import android.content.Intent;import android.content.SharedPreferences;import android.content.SharedPreferences.Editor;import android.os.Bundle;import android.view.Menu;import android.view.View;import android.widget.Button;import android.widget.CheckBox;import android.widget.EditText;import android.widget.Toast; /** * @author lili.guo * * 2014-6-6下午3:20:17 */public class MainActivity extends Activity { private EditText username_et; private EditText password_et; private CheckBox rem; private CheckBox auto; private Button login; private String username,password; SharedPreferences sp; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); sp=getSharedPreferences("userInfo",Context.MODE_WORLD_READABLE); username_et=(EditText) findViewById(R.id.username); password_et=(EditText) findViewById(R.id.password); rem=(CheckBox) findViewById(R.id.remember); auto=(CheckBox) findViewById(R.id.autologin); login=(Button) findViewById(R.id.login); if (rem.isChecked()) { username_et.setText(sp.getString("username", "")); password_et.setText(sp.getString("password", "")); if (auto.isChecked()) { Intent intent1=new Intent(); intent1.setClass(getApplicationContext(), Welcome.class); startActivity(intent1); } } login.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub username=username_et.getText().toString(); password=password_et.getText().toString(); if (username.equals("Thea")&&password.equals("123")) { Toast.makeText(getApplicationContext(), "登錄成功", Toast.LENGTH_SHORT).show(); if (rem.isChecked()) { Editor editor=sp.edit(); editor.putString("username", username); editor.putString("password", password); editor.commit(); } Intent intent2=new Intent(); intent2.setClass(getApplicationContext(), Welcome.class); startActivity(intent2); } } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }
用戶名和密碼是寫死的,為了方便有需要的人學(xué)習(xí),稍微解釋一下
if (rem.isChecked()) { username_et.setText(sp.getString("username", "")); password_et.setText(sp.getString("password", "")); if (auto.isChecked()) { Intent intent1=new Intent(); intent1.setClass(getApplicationContext(), Welcome.class); startActivity(intent1); } }
以上代碼意思是如果記住密碼就拿到本地存儲(chǔ)的用戶名和密碼,如果是自動(dòng)登錄則直接跳轉(zhuǎn)的下一個(gè)網(wǎng)頁
if (rem.isChecked()) { Editor editor=sp.edit(); editor.putString("username", username); editor.putString("password", password); editor.commit(); } Intent intent2=new Intent(); intent2.setClass(getApplicationContext(), Welcome.class); startActivity(intent2);
以上代碼意思是說如果是記住密碼的狀態(tài),則把用戶名和密碼寫到本地
注意一點(diǎn)哈,跳轉(zhuǎn)到下一個(gè)activity時(shí),要修改一下AndroidManifest.xml文件,ok,結(jié)束。
感謝各位的閱讀,以上就是“android怎么實(shí)現(xiàn)記住用戶名和密碼以及自動(dòng)登錄功能”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)android怎么實(shí)現(xiàn)記住用戶名和密碼以及自動(dòng)登錄功能這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。