android login and registration with php

Upload: ngotuannghia1

Post on 05-Apr-2018

239 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/31/2019 Android Login and Registration With PHP

    1/30

    2012

    Su tm v bin son bi TVDT

    Android Login and Registration with PHP, MySQLand SQLite

    Prerequisites

    This tutorial is combination of some of my previous tutorials. I hope you covered these tutorials

    before.

    Android making HTTP Requests

    Android JSON Parsing Tutorial

    Android SQLite Database Tutorial

    Android Login and Registration Screen Design

    API (Application Programming Interface)

    Accepting requests by GET/POST methods

    Interact with PHP classes to get data from database or store in database

    Finally will give output in JSON format

    http://www.androidhive.info/2011/10/android-making-http-requests/http://www.androidhive.info/2011/10/android-making-http-requests/http://www.androidhive.info/2012/01/android-json-parsing-tutorial/http://www.androidhive.info/2012/01/android-json-parsing-tutorial/http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/http://www.androidhive.info/2011/10/android-login-and-registration-screen-design/http://www.androidhive.info/2011/10/android-login-and-registration-screen-design/http://www.androidhive.info/2011/10/android-login-and-registration-screen-design/http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/http://www.androidhive.info/2012/01/android-json-parsing-tutorial/http://www.androidhive.info/2011/10/android-making-http-requests/
  • 7/31/2019 Android Login and Registration With PHP

    2/30

    2012

    Su tm v bin son bi TVDT

    1. Creating MySQL Database and TablesAs I am writing API in PHP I selected MySql database to maintain users and other related

    information. Open your mysql console or phpmyadmin and run following query to create database

    and users table.

    create database android_api /** Creating Database **/use android_api /** Selecting Database **/create table users(

    uid int(11) primary key auto_increment,unique_id varchar(23) notnull unique,name varchar(50) notnull,

    email varchar(100) notnull unique,encrypted_password varchar(80) notnull,salt varchar(10) notnull,created_at datetime,updated_at datetime null

    ); /** Creating Users Table **/

  • 7/31/2019 Android Login and Registration With PHP

    3/30

    2012

    Su tm v bin son bi TVDT

    2. Building PHP API Classes

    To make it minimum i tried to use less number of php files. Following are the files are required to

    build API in php. You can find description of each file in the below image.

    config.php This file contains constant variables to connect to database.

    DB_Connect.php This file is used to connect or disconnect to database.

  • 7/31/2019 Android Login and Registration With PHP

    4/30

    2012

    Su tm v bin son bi TVDT

    classDB_Connect {

    // constructorfunction__construct() {

    }

    // destructorfunction__destruct() {

    // $this->close();}

    // Connecting to databasepublicfunctionconnect() {

    require_once'config.php';// connecting to mysql$con= mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);// selecting databasemysql_select_db(DB_DATABASE);

    // return database handlerreturn$con;

    }

    // Closing database connectionpublicfunctionclose() {

    mysql_close();}

    }

    ?>

    DB_Functions.php This file contains functions to store user in database, get user from database.

    You can also add methods like update user, delete user.

    user unique id I am generating unique user id in php using uniqid(, true) function. Sample user

    id will be like 4f074eca601fb8.88015924

    Encrypted Password This password is stored using base64_encode method. Each password

    will need two columns to store in database. One is to store encrypted passwordand second columnis to store salt used to encrypt the password.

  • 7/31/2019 Android Login and Registration With PHP

    5/30

    2012

    Su tm v bin son bi TVDT

    //put your code here// constructorfunction__construct() {

    require_once'DB_Connect.php';

    // connecting to database$this->db = newDB_Connect();$this->db->connect();

    }

    // destructorfunction__destruct() {

    }

    /*** Storing new user* returns user details*/publicfunctionstoreUser($name, $email, $password) {

    $uuid= uniqid('', true);$hash= $this->hashSSHA($password);$encrypted_password= $hash["encrypted"]; // encrypted password$salt= $hash["salt"]; // salt$result= mysql_query("INSERT INTO users(unique_id, name, email, encrypted_p

    '$encrypted_password', '$salt', NOW())");// check for successful storeif($result) {

    // get user details$uid= mysql_insert_id(); // last inserted id$result= mysql_query("SELECT * FROM users WHERE uid = $uid");

    // return user detailsreturnmysql_fetch_array($result);} else{

    returnfalse;}

    }

    /*** Get user by email and password*/publicfunctiongetUserByEmailAndPassword($email, $password) {

    $result= mysql_query("SELECT * FROM users WHERE email = '$email'") ordie(my// check for result$no_of_rows= mysql_num_rows($result);if($no_of_rows> 0) {

    $result= mysql_fetch_array($result);$salt= $result['salt'];$encrypted_password= $result['encrypted_password'];$hash= $this->checkhashSSHA($salt, $password);// check for password equalityif($encrypted_password== $hash) {

    // user authentication details are correctreturn$result;

  • 7/31/2019 Android Login and Registration With PHP

    6/30

    2012

    Su tm v bin son bi TVDT

    }} else{

    // user not foundreturnfalse;

    }

    }

    /*** Check user is existed or not*/publicfunctionisUserExisted($email) {

    $result= mysql_query("SELECT email from users WHERE email = '$email'");$no_of_rows= mysql_num_rows($result);if($no_of_rows> 0) {

    // user existedreturntrue;

    } else{// user not existed

    returnfalse;}}

    /*** Encrypting password* @param password* returns salt and encrypted password*/publicfunctionhashSSHA($password) {

    $salt= sha1(rand());$salt= substr($salt, 0, 10);

    $encrypted= base64_encode(sha1($password. $salt, true) . $salt);$hash= array("salt"=> $salt, "encrypted"=> $encrypted);return$hash;

    }

    /*** Decrypting password* @param salt, password* returns hash string*/publicfunctioncheckhashSSHA($salt, $password) {

    $hash= base64_encode(sha1($password. $salt, true) . $salt);

    return$hash;}

    }

    ?>

  • 7/31/2019 Android Login and Registration With PHP

    7/30

    2012

    Su tm v bin son bi TVDT

    index.php This file plays role of accepting requests and giving response. This file accepts all GET

    and POST requests. On each request it will talk to database and will give appropriate response in

    JSON format.

  • 7/31/2019 Android Login and Registration With PHP

    8/30

    2012

    Su tm v bin son bi TVDT

    $name= $_POST['name'];$email= $_POST['email'];$password= $_POST['password'];

    // check if user is already existed

    if($db->isUserExisted($email)) {// user is already existed - error response$response["error"] = 2;$response["error_msg"] = "User already existed";echojson_encode($response);

    } else{// store user$user= $db->storeUser($name, $email, $password);if($user) {

    // user stored successfully$response["success"] = 1;$response["uid"] = $user["unique_id"];$response["user"]["name"] = $user["name"];

    $response["user"]["email"] = $user["email"];$response["user"]["created_at"] = $user["created_at"];$response["user"]["updated_at"] = $user["updated_at"];echojson_encode($response);

    } else{// user failed to store$response["error"] = 1;$response["error_msg"] = "Error occured in Registartion";echojson_encode($response);

    }}

    } else{echo"Invalid Request";

    }

    } else{echo"Access Denied";

    }?>

    Types of API JSON Responses

    The following are the different types of JSON responses generated by API.

    Registration Success Response Success Code = 1 (User Successfully Stored)

    {"tag": "register","success": 1,"error": 0,"uid": "4f074ca1e3df49.06340261","user": {

    "name": "Ravi Tamada","email": "[email protected]","created_at": "2012-01-07 01:03:53","updated_at": null

    }

  • 7/31/2019 Android Login and Registration With PHP

    9/30

    2012

    Su tm v bin son bi TVDT

    }

    Registration Error Response Error Code = 1 (Error in storing)

    { "tag": "register","success": 0,"error": 1,"error_msg": "Error occured in Registartion"

    }

    Registration Error Response Error Code = 2 (User Already Existed)

    {"tag": "register","success": 0,"error": 2,

    "error_msg": "User already existed"}

    Login Success Response Success Code = 1 (User Logged in)

    {"tag": "login","success": 1,"error": 0,"uid": "4f074eca601fb8.88015924","user": {

    "name": "Ravi Tamada","email": "[email protected]","created_at": "2012-01-07 01:03:53","updated_at": null

    }}

    Login Error Response Error Code = 1 (Login Error Incorrect username/password)

    {"tag": "login","success": 0,"error": 1,"error_msg": "Incorrect email or password!"

    }

    Here it completes the API part and start the Android Project.

    3. Starting Android Project

    Until now we wrote server side programming to build simple api. Next thing is build android app to

    interact with the API. In this project i am coding simple app which will have three screens Login

  • 7/31/2019 Android Login and Registration With PHP

    10/30

    2012

    Su tm v bin son bi TVDT

    Screen, Registration Screen and a welcome Dashboard Screen. So lets get started by creating

    new project in you Eclipse IDE.

    1. Create a new project by going to File New Android Project. Fill all the details and name

    your activity as DashboardActivity.

    2. Next step is to create a new package to store all our library files. Right Click on src

    New Package and name it as library.

    JSON Parser Class

    3. Next we need parser class to parse api response JSON. So create a new class in your library

    package name it as JSONParser.java and fill it with following code.

    JSONParser.javapackagecom.example.androidhive.library;

  • 7/31/2019 Android Login and Registration With PHP

    11/30

    2012

    Su tm v bin son bi TVDT

    importjava.io.BufferedReader;importjava.io.IOException;importjava.io.InputStream;importjava.io.InputStreamReader;

    importjava.io.UnsupportedEncodingException; importjava.util.List;

    importorg.apache.http.HttpEntity;importorg.apache.http.HttpResponse;importorg.apache.http.NameValuePair;importorg.apache.http.client.ClientProtocolException; importorg.apache.http.client.entity.UrlEncodedFormEntity; importorg.apache.http.client.methods.HttpPost; importorg.apache.http.impl.client.DefaultHttpClient; importorg.json.JSONException;importorg.json.JSONObject;

    importandroid.util.Log;

    publicclassJSONParser {

    staticInputStream is = null;staticJSONObject jObj = null;staticString json = "";

    // constructorpublicJSONParser() {

    }

    publicJSONObject getJSONFromUrl(String url, Listparams) {

    // Making HTTP requesttry{

    // defaultHttpClientDefaultHttpClient httpClient = newDefaultHttpClient();HttpPost httpPost = newHttpPost(url);httpPost.setEntity(newUrlEncodedFormEntity(params));

    HttpResponse httpResponse = httpClient.execute(httpPost);HttpEntity httpEntity = httpResponse.getEntity();

    is = httpEntity.getContent();

    } catch(UnsupportedEncodingException e) {e.printStackTrace();

    } catch(ClientProtocolException e) {e.printStackTrace();

    } catch(IOException e) {e.printStackTrace();

    }

  • 7/31/2019 Android Login and Registration With PHP

    12/30

    2012

    Su tm v bin son bi TVDT

    try{BufferedReader reader = newBufferedReader(new

    InputStreamReader(is, "iso-8859-1"), 8);

    StringBuilder sb = newStringBuilder();

    String line = null;while((line = reader.readLine()) != null) {sb.append(line + "n");

    }is.close();json = sb.toString();Log.e("JSON", json);

    } catch(Exception e) {Log.e("Buffer Error", "Error converting result "+

    e.toString());}

    // try parse the string to a JSON object

    try{jObj = newJSONObject(json);} catch(JSONException e) {

    Log.e("JSON Parser", "Error parsing data "+ e.toString());}

    // return JSON StringreturnjObj;

    }}

    SQLite Database Handler Class

    4. In the application to store user information i am using SQLite Database. So create new class

    in you library package folder and name it as DatabaseHandler.java and fill the class with

    following code. This class file has functions to handle database operations like storing user and

    getting user.

  • 7/31/2019 Android Login and Registration With PHP

    13/30

    2012

    Su tm v bin son bi TVDT

    DatabaseHandler.javapackagecom.example.androidhive.library;

    importjava.util.HashMap;

    importandroid.content.ContentValues;importandroid.content.Context;importandroid.database.Cursor;importandroid.database.sqlite.SQLiteDatabase; importandroid.database.sqlite.SQLiteOpenHelper;

    publicclassDatabaseHandler extendsSQLiteOpenHelper {

    // All Static variables// Database VersionprivatestaticfinalintDATABASE_VERSION = 1;

    // Database NameprivatestaticfinalString DATABASE_NAME = "android_api";

    // Login table nameprivatestaticfinalString TABLE_LOGIN = "login";

    // Login Table Columns namesprivatestaticfinalString KEY_ID = "id";privatestaticfinalString KEY_NAME = "name";privatestaticfinalString KEY_EMAIL = "email";privatestaticfinalString KEY_UID = "uid";privatestaticfinalString KEY_CREATED_AT = "created_at";

    publicDatabaseHandler(Context context) {super(context, DATABASE_NAME, null, DATABASE_VERSION);}

    // Creating Tables@OverridepublicvoidonCreate(SQLiteDatabase db) {

    String CREATE_LOGIN_TABLE = "CREATE TABLE "+ TABLE_LOGIN + "("+ KEY_ID + " INTEGER PRIMARY KEY,"+ KEY_NAME + " TEXT,"+ KEY_EMAIL + " TEXT UNIQUE,"+ KEY_UID + " TEXT,"+ KEY_CREATED_AT + " TEXT"+ ")";

    db.execSQL(CREATE_LOGIN_TABLE); }

    // Upgrading database@OverridepublicvoidonUpgrade(SQLiteDatabase db, intoldVersion, intnewVersion)

    {// Drop older table if existeddb.execSQL("DROP TABLE IF EXISTS "+ TABLE_LOGIN);

  • 7/31/2019 Android Login and Registration With PHP

    14/30

    2012

    Su tm v bin son bi TVDT

    // Create tables againonCreate(db);

    }

    /**

    * Storing user details in database* */publicvoidaddUser(String name, String email, String uid, String

    created_at) {SQLiteDatabase db = this.getWritableDatabase();

    ContentValues values = newContentValues();values.put(KEY_NAME, name); // Namevalues.put(KEY_EMAIL, email); // Emailvalues.put(KEY_UID, uid); // Emailvalues.put(KEY_CREATED_AT, created_at); // Created At

    // Inserting Row

    db.insert(TABLE_LOGIN, null, values);db.close(); // Closing database connection

    }

    /*** Getting user data from database* */publicHashMap getUserDetails(){

    HashMap user = newHashMap();String selectQuery = "SELECT * FROM "+ TABLE_LOGIN;

    SQLiteDatabase db = this.getReadableDatabase();Cursor cursor = db.rawQuery(selectQuery, null);

    // Move to first rowcursor.moveToFirst();if(cursor.getCount() > 0){

    user.put("name", cursor.getString(1));user.put("email", cursor.getString(2));user.put("uid", cursor.getString(3));user.put("created_at", cursor.getString(4));

    }cursor.close();db.close();// return userreturnuser;

    }

    /*** Getting user login status* return true if rows are there in table* */publicintgetRowCount() {

    String countQuery = "SELECT * FROM "+ TABLE_LOGIN;SQLiteDatabase db = this.getReadableDatabase();Cursor cursor = db.rawQuery(countQuery, null);introwCount = cursor.getCount();

  • 7/31/2019 Android Login and Registration With PHP

    15/30

    2012

    Su tm v bin son bi TVDT

    db.close();cursor.close();

    // return row countreturnrowCount;

    }

    /*** Re crate database* Delete all tables and create them again* */publicvoidresetTables(){

    SQLiteDatabase db = this.getWritableDatabase();// Delete All Rowsdb.delete(TABLE_LOGIN, null, null);db.close();

    }

    }

    User Functions Class

    5. Create a new class file under library package and name it as UserFunctions.java. This class

    will have functions to handle all user events like

    loginUser()

    registerUser()

    getLoginStatus()

    logoutUser().

    In this class all the functions will interact with JSONParser, DatabaseHandler classes. I am testing

    API in localhost using xampp software. Normally localhost will run on port http://127.0.0.1 or

    http://localhost/. In AVD to connect to localhost you need to use urlhttp://10.0.2.2/ instead

    of http://localhost/. If you want deploy your api on website the use the url http://yoursite.com/api/

    UserFunctions.javapackagecom.example.androidhive.library;

  • 7/31/2019 Android Login and Registration With PHP

    16/30

    2012

    Su tm v bin son bi TVDT

    importjava.util.ArrayList;importjava.util.List;

    importorg.apache.http.NameValuePair;importorg.apache.http.message.BasicNameValuePair; importorg.json.JSONObject;

    importandroid.content.Context;

    publicclassUserFunctions {

    privateJSONParser jsonParser;

    // Testing in localhost using wamp or xampp// usehttp://10.0.2.2/ to connect to your localhost ie

    http://localhost/

    privatestaticString loginURL = "http://10.0.2.2/ah_login_api/";privatestaticString registerURL = "http://10.0.2.2/ah_login_api/";

    privatestaticString login_tag = "login";privatestaticString register_tag = "register";

    // constructorpublicUserFunctions(){

    jsonParser = newJSONParser();}

    /*** function make Login Request

    * @param email* @param password* */publicJSONObject loginUser(String email, String password){

    // Building ParametersList params = newArrayList();params.add(newBasicNameValuePair("tag", login_tag));params.add(newBasicNameValuePair("email", email));params.add(newBasicNameValuePair("password", password));JSONObject json = jsonParser.getJSONFromUrl(loginURL, params);// return json// Log.e("JSON", json.toString());returnjson;

    }

    /*** function make Login Request* @param name* @param email* @param password* */publicJSONObject registerUser(String name, String email, String

    password){

    http://10.0.2.2/http://10.0.2.2/http://localhost/http://localhost/http://10.0.2.2/ah_login_api/http://10.0.2.2/ah_login_api/http://10.0.2.2/ah_login_api/http://10.0.2.2/ah_login_api/http://10.0.2.2/ah_login_api/http://10.0.2.2/ah_login_api/http://localhost/http://10.0.2.2/
  • 7/31/2019 Android Login and Registration With PHP

    17/30

    2012

    Su tm v bin son bi TVDT

    // Building ParametersList params = newArrayList();params.add(newBasicNameValuePair("tag", register_tag));params.add(newBasicNameValuePair("name", name));params.add(newBasicNameValuePair("email", email));

    params.add(newBasicNameValuePair("password", password));

    // getting JSON ObjectJSONObject json = jsonParser.getJSONFromUrl(registerURL, params);// return jsonreturnjson;

    }

    /*** Function get Login status* */publicbooleanisUserLoggedIn(Context context){

    DatabaseHandler db = newDatabaseHandler(context);

    intcount = db.getRowCount();if(count > 0){// user logged inreturntrue;

    }returnfalse;

    }

    /*** Function to logout user* Reset Database* */publicbooleanlogoutUser(Context context){

    DatabaseHandler db = newDatabaseHandler(context);db.resetTables();returntrue;

    }

    }

    Designing the Screens

    6. Until now we have developed the library classes needed in this application. Next thing is build

    screens. We need three screens Login Screen, Registration Screen and Dashboard Screen.

    Create 3 xml files under res layout folder and name them

    as login.xml,register.xml and dashboard.xml

    login.xml login screen design layout

    login.xml

  • 7/31/2019 Android Login and Registration With PHP

    18/30

    2012

    Su tm v bin son bi TVDT

    android:background="#3b3b3b">

  • 7/31/2019 Android Login and Registration With PHP

    19/30

    2012

    Su tm v bin son bi TVDT

    register.xml registration screen design layout

    register.xml

  • 7/31/2019 Android Login and Registration With PHP

    20/30

    2012

    Su tm v bin son bi TVDT

    android:layout_height="fill_parent" android:background="#3b3b3b">

  • 7/31/2019 Android Login and Registration With PHP

    21/30

    2012

    Su tm v bin son bi TVDT

    android:layout_height="wrap_content" android:textColor="#e30000"android:padding="10dip"android:textStyle="bold"/>

  • 7/31/2019 Android Login and Registration With PHP

    22/30

    2012

    Su tm v bin son bi TVDT

    dashboard.xml dashboard screen design layout

    dashboard.xml

  • 7/31/2019 Android Login and Registration With PHP

    23/30

    2012

    Su tm v bin son bi TVDT

    android:textSize="20dip"android:textColor="#21dbd4"android:textStyle="bold"android:id="@+id/btnLogout"android:layout_marginTop="80dip"

    android:background="@null"/>

    Switching between Activites

    7. Now the designing part of the app is done next thing is to create activities for each layout and

    write functionality to achieve login and registration process.

    Create new activities LoginActivity.java and RegisterActivity.java and fill them with respective

    code below.

    LoginActivity.java Activity to handle login event

    LoginActipackagecom.example.androidhive;

  • 7/31/2019 Android Login and Registration With PHP

    24/30

    2012

    Su tm v bin son bi TVDT

    importjava.util.HashMap;

    importorg.json.JSONException;importorg.json.JSONObject;

    importandroid.app.Activity;importandroid.content.Intent;importandroid.os.Bundle;importandroid.util.Log;importandroid.view.View;importandroid.widget.Button;importandroid.widget.EditText;importandroid.widget.TextView;

    importcom.example.androidhive.library.DatabaseHandler; importcom.example.androidhive.library.UserFunctions;

    publicclassLoginActivity extendsActivity {Button btnLogin;Button btnLinkToRegister;EditText inputEmail;EditText inputPassword;TextView loginErrorMsg;

    // JSON Response node namesprivatestaticString KEY_SUCCESS = "success";privatestaticString KEY_ERROR = "error";privatestaticString KEY_ERROR_MSG = "error_msg";privatestaticString KEY_UID = "uid";privatestaticString KEY_NAME = "name";privatestaticString KEY_EMAIL = "email";privatestaticString KEY_CREATED_AT = "created_at";

    @OverridepublicvoidonCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState); setContentView(R.layout.login);

    // Importing all assets like buttons, text fieldsinputEmail = (EditText) findViewById(R.id.loginEmail);inputPassword = (EditText) findViewById(R.id.loginPassword);btnLogin = (Button) findViewById(R.id.btnLogin);btnLinkToRegister = (Button) findViewById(R.id.btnLinkToRegisterScreen);loginErrorMsg = (TextView) findViewById(R.id.login_error);

    // Login button Click EventbtnLogin.setOnClickListener(new View.OnClickListener() {

    publicvoidonClick(View view) {String email = inputEmail.getText().toString();String password = inputPassword.getText().toString();UserFunctions userFunction = newUserFunctions();

  • 7/31/2019 Android Login and Registration With PHP

    25/30

    2012

    Su tm v bin son bi TVDT

    JSONObject json = userFunction.loginUser(email, password);

    // check for login responsetry{

    if(json.getString(KEY_SUCCESS) != null) {

    loginErrorMsg.setText("");String res = json.getString(KEY_SUCCESS);if(Integer.parseInt(res) == 1){

    // user successfully logged in// Store user details in SQLite DatabaseDatabaseHandler db = newDatabaseHandler(getApplicationCJSONObject json_user = json.getJSONObject("user");

    // Clear all previous data in databaseuserFunction.logoutUser(getApplicationContext()); db.addUser(json_user.getString(KEY_NAME), json_user.getS

    json_user.getString(KEY_CREATED_AT));

    // Launch Dashboard ScreenIntent dashboard = newIntent(getApplicationContext(), D

    // Close all views before launching Dashboarddashboard.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(dashboard);

    // Close Login Screenfinish();

    }else{// Error in loginloginErrorMsg.setText("Incorrect username/password");

    }

    }} catch(JSONException e) {

    e.printStackTrace();}

    }});

    // Link to Register ScreenbtnLinkToRegister.setOnClickListener(new View.OnClickListener() {

    publicvoidonClick(View view) {Intent i = newIntent(getApplicationContext(),

    RegisterActivity.class);

    startActivity(i);finish();

    }});

    }}

    RegisterActivity.java Activity to handle registration event

  • 7/31/2019 Android Login and Registration With PHP

    26/30

    2012

    Su tm v bin son bi TVDT

    LoginActivity.javapackagecom.example.androidhive;

    importorg.json.JSONException;importorg.json.JSONObject;

    importcom.example.androidhive.library.DatabaseHandler; importcom.example.androidhive.library.UserFunctions;

    importandroid.app.Activity;importandroid.content.Intent;importandroid.os.Bundle;importandroid.util.Log;importandroid.view.View;importandroid.widget.Button;importandroid.widget.EditText;importandroid.widget.TextView;

    publicclassRegisterActivity extendsActivity {Button btnRegister;Button btnLinkToLogin;EditText inputFullName;EditText inputEmail;EditText inputPassword;TextView registerErrorMsg;

    // JSON Response node namesprivatestaticString KEY_SUCCESS = "success";privatestaticString KEY_ERROR = "error";privatestaticString KEY_ERROR_MSG = "error_msg";privatestaticString KEY_UID = "uid";privatestaticString KEY_NAME = "name";privatestaticString KEY_EMAIL = "email";privatestaticString KEY_CREATED_AT = "created_at";

    @OverridepublicvoidonCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState); setContentView(R.layout.register);

    // Importing all assets like buttons, text fieldsinputFullName = (EditText) findViewById(R.id.registerName);inputEmail = (EditText) findViewById(R.id.registerEmail);inputPassword = (EditText) findViewById(R.id.registerPassword);btnRegister = (Button) findViewById(R.id.btnRegister);btnLinkToLogin = (Button) findViewById(R.id.btnLinkToLoginScreen);registerErrorMsg = (TextView) findViewById(R.id.register_error);

    // Register Button Click eventbtnRegister.setOnClickListener(new View.OnClickListener() {

    publicvoidonClick(View view) {String name = inputFullName.getText().toString();String email = inputEmail.getText().toString();

  • 7/31/2019 Android Login and Registration With PHP

    27/30

    2012

    Su tm v bin son bi TVDT

    String password = inputPassword.getText().toString();UserFunctions userFunction = newUserFunctions();JSONObject json = userFunction.registerUser(name, email, password);

    // check for login response

    try{if(json.getString(KEY_SUCCESS) != null) {

    registerErrorMsg.setText("");String res = json.getString(KEY_SUCCESS);if(Integer.parseInt(res) == 1){

    // user successfully registred// Store user details in SQLite DatabaseDatabaseHandler db = newDatabaseHandler(getApplicationCJSONObject json_user = json.getJSONObject("user");

    // Clear all previous data in databaseuserFunction.logoutUser(getApplicationContext()); db.addUser(json_user.getString(KEY_NAME), json_user.getS

    json_user.getString(KEY_CREATED_AT)); // Launch Dashboard ScreenIntent dashboard = newIntent(getApplicationContext(), D// Close all views before launching Dashboarddashboard.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(dashboard);// Close Registration Screenfinish();

    }else{// Error in registrationregisterErrorMsg.setText("Error occured in registration"

    }}

    } catch(JSONException e) {e.printStackTrace();

    }}

    });

    // Link to Login ScreenbtnLinkToLogin.setOnClickListener(new View.OnClickListener() {

    publicvoidonClick(View view) {Intent i = newIntent(getApplicationContext(),

    LoginActivity.class);startActivity(i);// Close Registration Viewfinish();

    }});

    }}

    DashboardActivity.java Activity to handle dashboard event

  • 7/31/2019 Android Login and Registration With PHP

    28/30

    2012

    Su tm v bin son bi TVDT

    LoginActivity.javapackagecom.example.androidhive;

    importandroid.app.Activity;importandroid.content.Intent;importandroid.os.Bundle;importandroid.view.View;importandroid.widget.Button;

    importcom.example.androidhive.library.UserFunctions;

    publicclassDashboardActivity extendsActivity {UserFunctions userFunctions;Button btnLogout;@OverridepublicvoidonCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    /*** Dashboard Screen for the application* */// Check login status in databaseuserFunctions = newUserFunctions();if(userFunctions.isUserLoggedIn(getApplicationContext())){ // user already logged in show databoard

    setContentView(R.layout.dashboard); btnLogout = (Button) findViewById(R.id.btnLogout);

    btnLogout.setOnClickListener(new View.OnClickListener() {

    publicvoidonClick(View arg0) {// TODO Auto-generated method stubuserFunctions.logoutUser(getApplicationContext()); Intent login = newIntent(getApplicationContext(),

    LoginActivity.class);login.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(login);// Closing dashboard screenfinish();

    }});

    }else{// user is not logged in show login screenIntent login = newIntent(getApplicationContext(),

    LoginActivity.class);login.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(login);// Closing dashboard screenfinish();

    }}

    }

  • 7/31/2019 Android Login and Registration With PHP

    29/30

    2012

    Su tm v bin son bi TVDT

    Finally Updating AndroidManifest.xml

    Dont forget to update you AndroidManifest.xml file. Change following modifications

    Add Internet PersmissionsAdd Entries of each Activity

    AndroidManifest.xml

    8. Make sure that you have the files placed as in the following image

    http://schemas.android.com/apk/res/androidhttp://schemas.android.com/apk/res/androidhttp://schemas.android.com/apk/res/android
  • 7/31/2019 Android Login and Registration With PHP

    30/30

    2012

    Run your project by right clicking on your project folder Run As 1 Android Application.