Android Open Source - Ribbit-Login- Login Activity






From Project

Back to project page Ribbit-Login-.

License

The source code is released under:

Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...

If you think the Android project Ribbit-Login- listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.sabersoft.ribbit;
/* w ww .j ava2 s  .com*/
import com.parse.LogInCallback;
import com.parse.ParseException;
import com.parse.ParseUser;
import com.parse.SignUpCallback;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class LoginActivity extends Activity {

  protected TextView mSignUpTextView;
  protected TextView mForgotPassword; 
  
  protected EditText mUserName;
  protected EditText mPassword;
  protected Button mLoginButton;
  protected EditText mCode; 
  public static int swag; 
  

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
    setContentView(R.layout.activity_login);
    
    mUserName = (EditText)findViewById(R.id.usernameField);
    mPassword = (EditText)findViewById(R.id.passwordField);
    mLoginButton = (Button)findViewById(R.id.loginButton);
    mCode = (EditText)findViewById(R.id.appCode); 
    
    
    mLoginButton.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        String username = mUserName.getText().toString();
        String password = mPassword.getText().toString();
        String code = mCode.getText().toString();
        
        if (!code.isEmpty())
        {
        swag = Integer.parseInt(code); }
        
        //int i = 5;
        //int j = new Integer (mCode.getText().toString()).intValue();
        
      
        username = username.trim();
        password = password.trim();
        code = code.trim();
        
        if (username.isEmpty() || password.isEmpty() || code.isEmpty()) {
          AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
          builder.setMessage(R.string.login_error)
            .setTitle(R.string.sign_up_error_title)
            .setPositiveButton(android.R.string.ok, null);
          AlertDialog dialog = builder.create();
          dialog.show();
        }
        else if (swag == 5) {
          
            setProgressBarIndeterminateVisibility(true);
            ParseUser.logInInBackground(username, password, new LogInCallback() {
            
            @Override
            public void done(ParseUser user, ParseException e) {
              // TODO Auto-generated method stub
              setProgressBarIndeterminateVisibility(false);
              if (e == null){
                Intent intent = new Intent(LoginActivity.this, MainActivity.class);
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
                startActivity(intent);
              }
              else {
                AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
                builder.setMessage("Some of your credentials are invalid.")
                  .setTitle(R.string.sign_up_error_title)
                  .setPositiveButton(android.R.string.ok, null);
                AlertDialog dialog = builder.create();
                dialog.show();
              }
            }
          });
            
        } else {
          AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
          builder.setMessage("Your Passcode is incorrect. Read the documentation to obtain the correct passcode and access the application.")
            .setTitle(R.string.sign_up_error_title)
            .setPositiveButton(android.R.string.ok, null);
          AlertDialog dialog = builder.create();
          dialog.show();
        }
      }
    });
    

// NAVIGATE FROM LOGIN ACTIVITY TO SIGNUP ACTIVITY 
    
    mSignUpTextView = (TextView)findViewById(R.id.signUpText);
    mForgotPassword = (TextView)findViewById(R.id.forgotPassword); 
    
    mForgotPassword.setOnClickListener(new View.OnClickListener() {
      
      @Override
      public void onClick(View arg0) {
        // TODO Auto-generated method stub
        Intent intent = new Intent(LoginActivity.this, ForgotPasswordActivity.class);
        startActivity(intent);
      }
    });
    
    mSignUpTextView.setOnClickListener(new View.OnClickListener() {
      
      @Override
      public void onClick(View v) {
        // TODO Auto-generated method stub
        Intent intent = new Intent(LoginActivity.this, SignUpActivity.class);
        startActivity(intent);
      }
    });
    
    
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.login, menu);
    return true;
  }

  @Override
  public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    //if (id == R.id.action_settings) {
    //  return true;
    //}
    return super.onOptionsItemSelected(item);
  }
}




Java Source Code List

com.sabersoft.ribbit.ForgotPasswordActivity.java
com.sabersoft.ribbit.LoginActivity.java
com.sabersoft.ribbit.MainActivity.java
com.sabersoft.ribbit.RibbitApplication.java
com.sabersoft.ribbit.SignUpActivity.java