這篇文章主要講解了“android怎么實(shí)現(xiàn)記住用戶(hù)名和密碼以及自動(dòng)登錄功能”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“android怎么實(shí)現(xiàn)記住用戶(hù)名和密碼以及自動(dòng)登錄功能”吧!
站在用戶(hù)的角度思考問(wèn)題,與客戶(hù)深入溝通,找到霍邱網(wǎng)站設(shè)計(jì)與霍邱網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶(hù)體驗(yàn)好的作品,建站類(lèi)型包括:做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)、網(wǎng)頁(yè)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋霍邱地區(qū)。
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; } }
用戶(hù)名和密碼是寫(xiě)死的,為了方便有需要的人學(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ǔ)的用戶(hù)名和密碼,如果是自動(dòng)登錄則直接跳轉(zhuǎn)的下一個(gè)網(wǎng)頁(yè)
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);
以上代碼意思是說(shuō)如果是記住密碼的狀態(tài),則把用戶(hù)名和密碼寫(xiě)到本地
注意一點(diǎn)哈,跳轉(zhuǎn)到下一個(gè)activity時(shí),要修改一下AndroidManifest.xml文件,ok,結(jié)束。
感謝各位的閱讀,以上就是“android怎么實(shí)現(xiàn)記住用戶(hù)名和密碼以及自動(dòng)登錄功能”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)android怎么實(shí)現(xiàn)記住用戶(hù)名和密碼以及自動(dòng)登錄功能這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!