package com.daifan.activity; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.annotation.TargetApi; import android.content.Intent; import android.os.AsyncTask; import android.os.Build; import android.os.Bundle; import android.text.TextUtils; import android.view.View; import android.widget.EditText; import android.widget.TextView; import com.actionbarsherlock.app.SherlockActivity; import com.daifan.R; import com.daifan.service.UserService; /** * Activity which displays a login screen to the user, offering registration as * well. */ public class RegisterActivity extends SherlockActivity { /** * Keep track of the login task to ensure we can cancel it if requested. */ private UserRegisterTask mAuthTask = null; // Values for email and password at the time of the login attempt. private String mName; private String mEmail; private String mPassword; private String mConfirmPassword; // UI references. private EditText mNameView; private EditText mEmailView; private EditText mPasswordView; private EditText mConfirmPasswordView; private View mRegisterFormView; private View mRegisterStatusView; private TextView mRegisterStatusMessageView; @Override protected void onCreate(Bundle savedInstanceState) { setTheme(R.style.Theme_Sherlock_Light); super.onCreate(savedInstanceState); setContentView(R.layout.activity_register); // Set up the login form. mNameView = (EditText) findViewById(R.id.name); mEmailView = (EditText) findViewById(R.id.email); mPasswordView = (EditText) findViewById(R.id.password); mConfirmPasswordView = (EditText) findViewById(R.id.confirm_password); mRegisterFormView = findViewById(R.id.register_form); mRegisterStatusView = findViewById(R.id.register_status); mRegisterStatusMessageView = (TextView) findViewById(R.id.register_status_message); findViewById(R.id.register_button).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { attemptRegister(); } }); // Link to Login Screen findViewById(R.id.btnLinkToLogin).setOnClickListener(new View.OnClickListener() { public void onClick(View view) { Intent i = new Intent(getApplicationContext(), LoginActivity.class); startActivity(i); finish(); } }); } /** * Attempts to sign in or register the account specified by the login form. * If there are form errors (invalid email, missing fields, etc.), the * errors are presented and no actual login attempt is made. */ public void attemptRegister() { if (mAuthTask != null) { return; } // Reset errors. mNameView.setError(null); mEmailView.setError(null); mPasswordView.setError(null); mConfirmPasswordView.setError(null); // Store values at the time of the login attempt. mName = mNameView.getText().toString(); mEmail = mEmailView.getText().toString(); mPassword = mPasswordView.getText().toString(); mConfirmPassword = mConfirmPasswordView.getText().toString(); boolean cancel = false; View focusView = null; // Check for a valid password. if (!TextUtils.equals(mPassword, mConfirmPassword)) { mConfirmPasswordView.setError(getString(R.string.error_incorrect_confirm_password)); focusView = mConfirmPasswordView; cancel = true; } // Check for a valid password. if (TextUtils.isEmpty(mPassword)) { mPasswordView.setError(getString(R.string.error_field_required)); focusView = mPasswordView; cancel = true; } // Check for a valid email address. if (TextUtils.isEmpty(mEmail)) { mEmailView.setError(getString(R.string.error_field_required)); focusView = mEmailView; cancel = true; } else if (!mEmail.contains("@")) { mEmailView.setError(getString(R.string.error_invalid_email)); focusView = mEmailView; cancel = true; } if (TextUtils.isEmpty(mName)) { mNameView.setError(getString(R.string.error_field_required)); focusView = mNameView; cancel = true; } if (cancel) { // There was an error; don't attempt login and focus the first // form field with an error. focusView.requestFocus(); } else { // Show a progress spinner, and kick off a background task to // perform the user login attempt. mRegisterStatusMessageView.setText(R.string.register_progress); showProgress(true); mAuthTask = new UserRegisterTask(); mAuthTask.execute((Void) null); } } /** * Shows the progress UI and hides the login form. */ @SuppressWarnings("ConstantConditions") @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR2) private void showProgress(final boolean show) { // On Honeycomb MR2 we have the ViewPropertyAnimator APIs, which allow // for very easy animations. If available, use these APIs to fade-in // the progress spinner. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2) { int shortAnimTime = getResources().getInteger(android.R.integer.config_shortAnimTime); mRegisterStatusView.setVisibility(View.VISIBLE); mRegisterStatusView.animate() .setDuration(shortAnimTime) .alpha(show ? 1 : 0) .setListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { mRegisterStatusView.setVisibility(show ? View.VISIBLE : View.GONE); } }); mRegisterFormView.setVisibility(View.VISIBLE); mRegisterFormView.animate() .setDuration(shortAnimTime) .alpha(show ? 0 : 1) .setListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { mRegisterFormView.setVisibility(show ? View.GONE : View.VISIBLE); } }); } else { // The ViewPropertyAnimator APIs are not available, so simply show // and hide the relevant UI components. mRegisterStatusView.setVisibility(show ? View.VISIBLE : View.GONE); mRegisterFormView.setVisibility(show ? View.GONE : View.VISIBLE); } } /** * Represents an asynchronous login/registration task used to authenticate * the user. */ public class UserRegisterTask extends AsyncTask<Void, Void, Boolean> { @Override protected Boolean doInBackground(Void... params) { UserService userService = new UserService(getApplicationContext()); return userService.register(mName,mEmail, mPassword)!=null; } @Override protected void onPostExecute(final Boolean success) { mAuthTask = null; showProgress(false); if (success) { Intent postList=new Intent(getApplicationContext(),PostListActivity.class); postList.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); startActivity(postList); finish(); } else { mNameView.setError(getString(R.string.error_name_exit)); mNameView.requestFocus(); } } @Override protected void onCancelled() { mAuthTask = null; showProgress(false); } } }