Androidはパスワードを覚えるログインインタフェースを実現
9975 ワード
1、設計構想:
主にSharedPreferencesを使用してユーザーデータを保存していますが、本Demoは暗号化されていません.AndroidシステムがROOTされると、他のユーザーはユーザーのプライベートディレクトリを表示することができ、パスワードファイルは安全ではありません.だから本当にソフトウェアの上で応用して、必ず暗号化を経てやっと保存して、MD 5暗号化を選択することができます.
SharedPreferencesの紹介はこのブログを参照してください.http://blog.csdn.net/conowen/article/details/7312612
TextWatcherの紹介はこのブログを参照してください.http://blog.csdn.net/conowen/article/details/7420673
2、機能紹介
デフォルトでは「パスワードを覚える」チェックボックスをオンにし、「ログイン」ボタンをクリックし、ログインに成功すると、SharedPreferencesファイルにユーザー名とパスワードを保存します.
ユーザー名を入力すると、TextWatcherでユーザーデータを読み続け、対応する「ユーザー名」を自動的に提示し、ユーザー名を選択するとSharedPreferencesのファイルを読み込み、パスワードの入力を自動的に完了します.
3、効果図:
4、コード:詳細はコメントに入っています
レイアウトファイル:main.xml
SharedPreferencesファイル、/data/data/パッケージ名/shared_prefsフォルダの下
主にSharedPreferencesを使用してユーザーデータを保存していますが、本Demoは暗号化されていません.AndroidシステムがROOTされると、他のユーザーはユーザーのプライベートディレクトリを表示することができ、パスワードファイルは安全ではありません.だから本当にソフトウェアの上で応用して、必ず暗号化を経てやっと保存して、MD 5暗号化を選択することができます.
SharedPreferencesの紹介はこのブログを参照してください.http://blog.csdn.net/conowen/article/details/7312612
TextWatcherの紹介はこのブログを参照してください.http://blog.csdn.net/conowen/article/details/7420673
2、機能紹介
デフォルトでは「パスワードを覚える」チェックボックスをオンにし、「ログイン」ボタンをクリックし、ログインに成功すると、SharedPreferencesファイルにユーザー名とパスワードを保存します.
ユーザー名を入力すると、TextWatcherでユーザーデータを読み続け、対応する「ユーザー名」を自動的に提示し、ユーザー名を選択するとSharedPreferencesのファイルを読み込み、パスワードの入力を自動的に完了します.
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>
SharedPreferencesファイル、/data/data/パッケージ名/shared_prefsフォルダの下
<?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>