Android 는 비밀 번 호 를 기억 하 는 기능 을 가 진 로그 인 인터페이스 를 실현 합 니 다.

본 논문 의 사례 는 안 드 로 이 드 가 비밀 번 호 를 기억 하 는 기능 을 가 진 로그 인 인터페이스 실현 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
1.디자인 사고
주로 Shared Preferences 를 사용 하여 사용자 데 이 터 를 저장 합 니 다.이 Demo 는 암호 화 되 지 않 았 습 니 다.모든 Android 시스템 이 ROOT 되면 다른 사용자 가 사용자 의 개인 디 렉 터 리 를 볼 수 있 고 암호 파일 은 안전 하지 않 습 니 다.그래서 진정 으로 소프트웨어 에 응 용 된 것 은 반드시 암호 화 를 거 쳐 저장 해 야 MD5 암호 화 를 선택 할 수 있 습 니 다.
Shared Preferences 소 개 는 이 박문 을 참조 할 수 있 습 니 다https://www.jb51.net/article/84859.htm
TextWatcher 의 소 개 는 이 박문 을 참조 할 수 있 습 니 다https://www.jb51.net/article/84865.htm 
2.기능 소개
기본적으로'비밀번호 기억 하기'체크 상 자 를 선택 하고'로그 인'단 추 를 누 르 면 로그 인 에 성공 하면 사용자 이름과 비밀 번 호 를 Shared Preferences 파일 에 저장 합 니 다.
사용자 이름 을 입력 할 때 TextWatcher 를 통 해 사용자 데 이 터 를 계속 읽 고 해당 하 는'사용자 이름'을 자동 으로 알려 주 며 사용자 이름 을 선택 하면 Shared Preferences 파일 을 읽 은 다음 비밀번호 입력 이 자동 으로 완 료 됩 니 다. 
3.효과 도


4.코드:상세 한 것 은 주석 안에 있 습 니 다.

/*author: conowen 
 * date: 2012.4.2 
 * 
 */ 
package com.conowen.remeberPwd; 
 
import android.app.Activity; 
import android.content.SharedPreferences; 
import android.os.Bundle; 
import android.text.Editable; 
import android.text.InputType; 
import android.text.TextWatcher; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.ArrayAdapter; 
import android.widget.AutoCompleteTextView; 
import android.widget.Button; 
import android.widget.CheckBox; 
import android.widget.EditText; 
import android.widget.Toast; 
 
public class RemeberPwdActivity extends Activity { 
 
 AutoCompleteTextView cardNumAuto; 
 EditText passwordET; 
 Button logBT; 
 
 CheckBox savePasswordCB; 
 SharedPreferences sp; 
 String cardNumStr; 
 String passwordStr; 
 
 /** Called when the activity is first created. */ 
 @Override 
 public void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.main); 
 cardNumAuto = (AutoCompleteTextView) findViewById(R.id.cardNumAuto); 
 passwordET = (EditText) findViewById(R.id.passwordET); 
 logBT = (Button) findViewById(R.id.logBT); 
 
 sp = this.getSharedPreferences("passwordFile", MODE_PRIVATE); 
 savePasswordCB = (CheckBox) findViewById(R.id.savePasswordCB); 
 savePasswordCB.setChecked(true);//         
 cardNumAuto.setThreshold(1);//   1           
 passwordET.setInputType(InputType.TYPE_CLASS_TEXT 
 | InputType.TYPE_TEXT_VARIATION_PASSWORD); 
 //      InputType.TYPE_TEXT_VARIATION_PASSWORD,   0x81 
 //      InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD,   0x91 
 
 cardNumAuto.addTextChangedListener(new TextWatcher() { 
 
 @Override 
 public void onTextChanged(CharSequence s, int start, int before, 
  int count) { 
 // TODO Auto-generated method stub 
 String[] allUserName = new String[sp.getAll().size()];// sp.getAll().size()            
 allUserName = sp.getAll().keySet().toArray(new String[0]); 
 // sp.getAll()    hash map 
 // keySet()    a set of the keys. 
 // hash map  key-value    
 
 ArrayAdapter<String> adapter = new ArrayAdapter<String>( 
  RemeberPwdActivity.this, 
  android.R.layout.simple_dropdown_item_1line, 
  allUserName); 
 
 cardNumAuto.setAdapter(adapter);//         
 
 } 
 
 @Override 
 public void beforeTextChanged(CharSequence s, int start, int count, 
  int after) { 
 // TODO Auto-generated method stub 
 
 } 
 
 @Override 
 public void afterTextChanged(Editable s) { 
 // TODO Auto-generated method stub 
 passwordET.setText(sp.getString(cardNumAuto.getText() 
  .toString(), ""));//        
 
 } 
 }); 
 
 //    
 logBT.setOnClickListener(new OnClickListener() { 
 
 @Override 
 public void onClick(View v) { 
 // TODO Auto-generated method stub 
 
 cardNumStr = cardNumAuto.getText().toString(); 
 passwordStr = passwordET.getText().toString(); 
 
 if (!((cardNumStr.equals("test")) && (passwordStr 
  .equals("test")))) { 
  Toast.makeText(RemeberPwdActivity.this, "    ,     ", 
  Toast.LENGTH_SHORT).show(); 
 } else { 
  if (savePasswordCB.isChecked()) {//           
  sp.edit().putString(cardNumStr, passwordStr).commit(); 
  } 
  Toast.makeText(RemeberPwdActivity.this, "    ,        ……", 
  Toast.LENGTH_SHORT).show(); 
  //       Activity 
  // do something 
 
 } 
 
 } 
 }); 
 
 } 
 
} 
레이아웃 파일:main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:orientation="vertical" > 
 
 <TextView 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_gravity="center_horizontal" 
 android:text="    DEMO" 
 android:textSize="25px" /> 
 
 <LinearLayout 
 xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:gravity="center" 
 android:orientation="vertical" > 
 
 <LinearLayout 
 android:layout_width="250dip" 
 android:layout_height="wrap_content" 
 android:layout_marginLeft="10dp" 
 android:layout_marginRight="10dp" 
 android:layout_marginTop="15dp" 
 android:orientation="vertical" > 
 
 <LinearLayout 
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content" 
 android:orientation="horizontal" > 
 
 <LinearLayout 
  android:layout_width="fill_parent" 
  android:layout_height="80px" 
  android:orientation="vertical" > 
 
  <LinearLayout 
  android:layout_width="fill_parent" 
  android:layout_height="40px" 
  android:orientation="horizontal" > 
 
  <TextView 
  android:id="@+id/tv_account" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:layout_marginRight="10dp" 
  android:text="     :" 
  android:textSize="15px" /> 
 
  <AutoCompleteTextView 
  android:id="@+id/cardNumAuto" 
  android:layout_width="fill_parent" 
  android:layout_height="40px" > 
  </AutoCompleteTextView> 
  </LinearLayout> 
 
  <LinearLayout 
  android:layout_width="fill_parent" 
  android:layout_height="40px" 
  android:orientation="horizontal" > 
 
  <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:layout_marginRight="10dp" 
  android:text="    :" 
  android:textSize="15px" /> 
 
  <EditText 
  android:id="@+id/passwordET" 
  android:layout_width="fill_parent" 
  android:layout_height="40px" > 
  </EditText> 
  </LinearLayout> 
 </LinearLayout> 
 </LinearLayout> 
 
 <LinearLayout 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:orientation="horizontal" > 
 
 <CheckBox 
  android:id="@+id/savePasswordCB" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:layout_marginLeft="20dp" 
  android:text="    " > 
 </CheckBox> 
 
 <Button 
  android:id="@+id/logBT" 
  android:layout_width="100px" 
  android:layout_height="wrap_content" 
  android:layout_marginLeft="40dp" 
  android:layout_marginRight="10dp" 
  android:text="  " > 
 </Button> 
 </LinearLayout> 
 </LinearLayout> 
 </LinearLayout> 
 
</LinearLayout> 
Shared Preferences 파일,/data/패키지 이름/sharedprefs 폴 더 아래

<?xml version='1.0' encoding='utf-8' standalone='yes' ?> 
<map> 
<string name="test">test</string> 
<string name="test2">test</string> 
<string name="test1">test</string> 
</map> 
이상 은 본 고의 모든 내용 입 니 다.여러분 이 안 드 로 이 드 소프트웨어 프로 그래 밍 을 배 우 는 데 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기