今天在用某记账软件,我心里就再琢磨着,万一被老婆拿到手机,胡乱翻一通,万一看到了我的用钱流水账,那可不好,要遭!我要隐私~怎么办呢?于是发现其实人家早已想到,为用户考虑到了这个问题,有个设置密码功能,并且我发现启动后,输入密码连以往的登录或者进入进入的按钮都没有省去了,只要密码输入完匹配成功就自动进入了,好神奇,什么样做的呢?这个设计,能减少用户输入,同时还有心思的设计是就算在没有输入密码的时候也可以进行收入和支出的记录,只是看不到详细内容,非常好的设计!花了一点时间思考了一下就实现了这个小巧的自动登录功能。
下面把代码贴上来吧,大虾就勿喷了!
LoginActivity.java
package com.challen;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView;
/**
* Activity which displays a login screen to the user, offering registration as
* well.
*/
public class LoginActivity extends Activity {
private EditText mPasswordView;
private TextView mLoginStatusMessageView;
private Intent intent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mLoginStatusMessageView = (TextView)findViewById(R.id.sign_in_button);
mPasswordView = (EditText) findViewById(R.id.password);
mPasswordView.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(mPasswordView.getText().toString().equals("123456")){
intent = new Intent(LoginActivity.this,secondActivity.class);
startActivity(intent);
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
}
@Override
protected void onResume() {
// 由于我知道你会点击返回键反复试验,所以加了这句话
mPasswordView.setText("");
super.onResume();
}
}
跳转过去的second.activity各位就随便弄一个吧!不过需要记住的就是新增了activity后记着要在AndroidManifest.xml中添加这个activity
mian.xml
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".LoginActivity" >
<!-- Login form -->
<LinearLayout
style="@style/LoginFormContainer"
android:orientation="vertical" >
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="输入密码"
android:maxLines="1"
android:singleLine="true" />
<TextView
android:id="@+id/sign_in_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginTop="16dp"
android:paddingLeft="32dp"
android:paddingRight="32dp"
android:text="密码匹配成功则自动登录" />
</LinearLayout>
</merge>
其实最关键的就是知道edittext的一些监听的函数了,例如还有一些自动补全特别是用于账号输入的时候,这里主要就是用到了监听edittext的变化用到了addTextChangedListener,并且配合TextWatcher()就能实现在输入的过程中进行一些操作了,把登录跳转的方法写在了onTextChanged里。
好了,我这里预设的密码就是123456设置死了的,大家可以试一试啦!
延伸问题:
1.这款记账软件设置的密码就是保存在本地的,那么如何保存,读取这个设置的密码呢?(这个其实就设计到了本地数据的存储,方法也多种多样,后面有时间我们接着讨论这个)
希望和大家多多交流,我也是android新兵,希望我们在这条路上坚持走下去,哪怕是一个小小的功能,只要能方便用户,就会为我们增加更多的使用者和用户。大家加油,积少成多,集腋成裘!