Android(Studio)登录活动模板生成的活动

25

我想在我的应用程序中实现一个登录表单,所以我尝试使用Android Studio向导生成的代码来创建一个类型为“Login Form”的新Activity。我认为Eclipse生成的代码几乎相同。

不幸的是,生成的代码没有提供预期的结果:我创建了一个漂亮简单的登录表单,但是无论密码是否正确,它都无法从登录表单移动。

此外,我注意到没有创建“注册”表单。

经过一番查找和分析代码,我最终让它正常工作了 :)

请参见下面的回复。

1个回答

49

步骤1:使登录成功并进入主活动

为了当使用错误的用户名/密码时让登录活动失败,并在成功时进入主活动,您需要对生成的代码进行以下更改:

AndroidManifest.xml

将以下代码从您的主要活动移动到登录活动部分:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

然后编辑 LoginActivity.java,并进行以下更改:

doInBackground 方法内,在结尾处将返回值从 true 替换为 false

@Override
protected Boolean doInBackground(Void... params) {
    for (String credential : DUMMY_CREDENTIALS) {
        String[] pieces = credential.split(":");
        if (pieces[0].equals(mEmail)) {
             // Account exists, return true if the password matches.
             return pieces[1].equals(mPassword);
        }
    }
        // TODO: register the new account here.
    return false;
}

然后在 onPostExecute 方法中,在 finish(); 后添加一个新的 intent:

@Override
protected void onPostExecute(final Boolean success) {
    mAuthTask = null;
    showProgress(false);
    if (success) {
        finish();
        Intent myIntent = new Intent(LoginActivity.this,MyMainActivity.class);
        LoginActivity.this.startActivity(myIntent);
    } else {
        mPasswordView.setError(getString(R.string.error_incorrect_password));
        mPasswordView.requestFocus();
    }
}

现在可以使用以下user:password凭据之一成功登录:

  • foo@example.com:hello
  • bar@example.com:world

其他user:password尝试会提示密码错误并留在登录页面。

步骤2:允许注册,将登录信息存储到数据库中,并检查凭证与数据库中的内容是否匹配

现在我们将从数据库(SQLite)获取登录信息而不是静态变量。这将允许我们在设备上注册多个用户。

首先,创建一个新的User.java类:

package com.clinsis.onlineresults.utils;

/**
 * Created by csimon on 5/03/14.
 */
public class User {
    public long userId;
    public String username;
    public String password;

    public User(long userId, String username, String password){
        this.userId=userId;
        this.username=username;
        this.password=password;
    }

}

然后创建或更新您的SQLite帮助类(在我这里是 DBTools.java ):

package com.clinsis.onlineresults.utils;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

/**
 * Created by csimon on 12/11/13.
 */
public class DBTools extends SQLiteOpenHelper {

    private final static int    DB_VERSION = 10;

    public DBTools(Context context) {
        super(context, "myApp.db", null,DB_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase sqLiteDatabase) {
        String query = "create table logins (userId Integer primary key autoincrement, "+
                          " username text, password text)";
                  sqLiteDatabase.execSQL(query);
    }

    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, int oldVersion, int newVersion) {
          try{
              System.out.println("UPGRADE DB oldVersion="+oldVersion+" - newVersion="+newVersion);
              onCreate(sqLiteDatabase);
              if (oldVersion<10){
                  String query = "create table logins (userId Integer primary key autoincrement, "+
                          " username text, password text)";
                  sqLiteDatabase.execSQL(query);
              }
            }
        catch (Exception e){e.printStackTrace();}
    }

    @Override
    public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
       // super.onDowngrade(db, oldVersion, newVersion);
        System.out.println("DOWNGRADE DB oldVersion="+oldVersion+" - newVersion="+newVersion);
    }

    public User insertUser (User queryValues){
        SQLiteDatabase database = this.getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put("username", queryValues.username);
        values.put("password", queryValues.password);
        queryValues.userId=database.insert("logins", null, values);
        database.close();
        return queryValues;
    }

    public int updateUserPassword (User queryValues){
        SQLiteDatabase database = this.getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put("username", queryValues.username);
        values.put("password", queryValues.password);
        queryValues.userId=database.insert("logins", null, values);
        database.close();
        return database.update("logins", values, "userId = ?", new String[] {String.valueOf(queryValues.userId)});
    }

    public User getUser (String username){
        String query = "Select userId, password from logins where username ='"+username+"'";
        User myUser = new User(0,username,"");
        SQLiteDatabase database = this.getReadableDatabase();
        Cursor cursor = database.rawQuery(query, null);
        if (cursor.moveToFirst()){
            do {
                myUser.userId=cursor.getLong(0);
                myUser.password=cursor.getString(1);
            } while (cursor.moveToNext());
        }
        return myUser;
    }
}
注意:DB_VERSION 用于检测数据库模式的升级/降级;)
然后按如下修改 LoginActivity.java:
添加以下导入:
import android.widget.Toast;
import com.clinsis.onlineresults.utils.DBTools;
import com.clinsis.onlineresults.utils.User;

添加一个新的变量:

private User myUser;

删除DUMMY_CREDENTIALS变量声明。

attemptLogin方法中,在调用UserLoginTask时添加上下文。

mAuthTask = new UserLoginTask(email, password, this);

使用以下代码替换内部的UserLoginTask类:

/**
     * Represents an asynchronous login/registration task used to authenticate
     * the user.
     */
public class UserLoginTask extends AsyncTask<Void, Void, Boolean> {

    private final String mEmail;
    private final String mPassword;
    private final Context mContext;

    UserLoginTask(String email, String password, Context context) {
        mEmail = email;
        mPassword = password;
        mContext= context;
    }

    @Override
    protected Boolean doInBackground(Void... params) {
        DBTools dbTools=null;
        try{
            dbTools = new DBTools(mContext);
            myUser = dbTools.getUser(mEmail);

            if (myUser.userId>0) {
                // Account exists, check password.
                if (myUser.password.equals(mPassword))
                    return true;
                else
                    return false;
            } else {
                myUser.password=mPassword;
                return true;
        }
        } finally{
            if (dbTools!=null)
                dbTools.close();
        }
        // return false if no previous checks are true
        return false;
    }

    @Override
    protected void onPostExecute(final Boolean success) {
        mAuthTask = null;
        showProgress(false);

        if (success) {
            if (myUser.userId>0){
                finish();
                Intent myIntent = new Intent(LoginActivity.this,ReportListActivity.class);
                LoginActivity.this.startActivity(myIntent);
            } else {
                DialogInterface.OnClickListener dialogClickListener = new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        switch (which){
                            case DialogInterface.BUTTON_POSITIVE:
                                DBTools dbTools=null;
                                try{
                                    finish();
                                    dbTools = new DBTools(mContext);
                                    myUser=dbTools.insertUser(myUser);
                                    Toast myToast = Toast.makeText(mContext,R.string.updatingReport, Toast.LENGTH_SHORT);
                                    myToast.show();
                                    Intent myIntent = new Intent(LoginActivity.this,ReportListActivity.class);
                                    LoginActivity.this.startActivity(myIntent);
                                } finally{
                                    if (dbTools!=null)
                                        dbTools.close();
                                }
                                break;

                            case DialogInterface.BUTTON_NEGATIVE:
                                mPasswordView.setError(getString(R.string.error_incorrect_password));
                                mPasswordView.requestFocus();
                                break;
                        }
                    }
                };

                AlertDialog.Builder builder = new AlertDialog.Builder(this.mContext);
                builder.setMessage(R.string.confirm_registry).setPositiveButton(R.string.yes, dialogClickListener)
                        .setNegativeButton(R.string.no, dialogClickListener).show();
            }
        } else {
            mPasswordView.setError(getString(R.string.error_incorrect_password));
            mPasswordView.requestFocus();
        }
    }

    @Override
    protected void onCancelled() {
        mAuthTask = null;
        showProgress(false);
    }
}
strings.xml中添加:
<string name="confirm_registry">Email not found. You want to create a new user with that email and password?</string>
<string name="yes">Yes</string>
<string name="no">No</string>

希望我没有忘记什么...对我来说工作得很好 :D

如果电子邮件地址在数据库中不存在,它将建议注册,否则它将检查电子邮件地址与密码是否匹配。

享受Android的乐趣 :D


真的很好的解释!但是为什么你不在 onUpgrade 活动中使用这段代码:db.execSQL("DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME); onCreate(db); - user5428483
1
@Stefano:onUpgrade 意味着用户已经安装了一个版本,很可能其中包含数据。我不想因为升级而删除用户数据。这就是为什么我首先检查版本的原因... - Cedric Simon
我唯一感到困惑的是像 db 这样的类,这些类是否都应该单独创建? - Larry Jing

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接