Advertisement
minafaw3

SignUpActivity

Nov 10th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.96 KB | None | 0 0
  1. package com.tech4life.dogville.View;
  2.  
  3. import android.app.Activity;
  4. import android.content.Intent;
  5. import android.os.Bundle;
  6. import android.os.Handler;
  7. import android.os.Message;
  8. import android.util.Patterns;
  9. import android.view.View;
  10. import android.widget.EditText;
  11. import android.widget.ImageButton;
  12. import android.widget.TextView;
  13. import android.widget.Toast;
  14.  
  15. import com.tech4life.dogville.Controller.Constants.AppConstants;
  16. import com.tech4life.dogville.Controller.Utils;
  17. import com.tech4life.dogville.Interfaces.VolleyResponeCallBack;
  18. import com.tech4life.dogville.Model.UsersModel;
  19. import com.tech4life.dogville.R;
  20. import com.tech4life.dogville.webservice.VolleyRequestHandler;
  21. import com.tech4life.dogville.webservice.data.RegistrationResponse;
  22.  
  23. import java.util.HashMap;
  24. import java.util.Map;
  25.  
  26. /**
  27. * Created by karma on 18/05/2015.
  28. */
  29. public class SignUpActivity extends Activity implements VolleyResponeCallBack {
  30.  
  31. private TextView signup_TV;
  32. private TextView signupnow_TV;
  33. private EditText username_ET;
  34. private EditText email_ET;
  35. private EditText phoneNumber_ET;
  36. private EditText password_ET;
  37. public static Handler operationHandler;
  38. private ImageButton arrowBack;
  39. private VolleyRequestHandler _VolleyRequestHandler;
  40.  
  41. @Override
  42. protected void onCreate(Bundle savedInstanceState) {
  43. super.onCreate(savedInstanceState);
  44. setContentView(R.layout.activity_sign_up);
  45. _VolleyRequestHandler = new VolleyRequestHandler(this);
  46. initialize();
  47. //setHandlerAction();
  48.  
  49. }
  50.  
  51.  
  52. private void initialize() {
  53.  
  54. signup_TV = (TextView) findViewById(R.id.title_tv);
  55. signupnow_TV = (TextView) findViewById(R.id.signUp_tv);
  56. username_ET = (EditText) findViewById(R.id.username_et);
  57. email_ET = (EditText) findViewById(R.id.email_et);
  58. phoneNumber_ET = (EditText) findViewById(R.id.phonenumber_et);
  59. password_ET = (EditText) findViewById(R.id.password_et);
  60. arrowBack = (ImageButton) findViewById(R.id.nav_back);
  61. arrowBack.setOnClickListener(new View.OnClickListener() {
  62. @Override
  63. public void onClick(View v) {
  64. onBackPressed();
  65. }
  66. });
  67.  
  68. }
  69.  
  70.  
  71. private void setHandlerAction() {
  72. operationHandler = new Handler() {
  73. public void handleMessage(Message msg) {
  74. Utils.hideLoader();
  75. RegistrationResponse response = (RegistrationResponse) msg.obj;
  76. if (response.getIsSuccessful()) {
  77. Toast.makeText(getBaseContext(), response.getResultString(), Toast.LENGTH_SHORT).show();
  78. Intent intent = new Intent(SignUpActivity.this, LoginActivity.class);
  79. startActivity(intent);
  80. } else {
  81. Toast.makeText(getBaseContext(), response.getResultString(), Toast.LENGTH_SHORT).show();
  82. }
  83. }
  84. };
  85.  
  86. }
  87.  
  88.  
  89. public void signUpMe_ActionHandler(View v) {
  90.  
  91. String userName = username_ET.getText().toString();
  92. String password = password_ET.getText().toString();
  93. String phone = phoneNumber_ET.getText().toString();
  94. String email = email_ET.getText().toString();
  95.  
  96. if (isValid()) {
  97.  
  98. Utils.showLoader(SignUpActivity.this);
  99. UsersModel user = new UsersModel(userName, password, phone, email);
  100.  
  101. register_user(user);
  102. // Intent intent = new Intent(SignUpActivity.this, RegistrationService.class);
  103. // intent.putExtra(AppConstants.USERNAME, userName);
  104. // intent.putExtra(AppConstants.PASSWORD, password);
  105. // intent.putExtra(AppConstants.REGISTRATION_EMAIL, email);
  106. // intent.putExtra(AppConstants.REGISTRATION_PHONE, phone);
  107. //
  108. // startService(intent);
  109. }
  110.  
  111. }
  112.  
  113. private boolean isValid() {
  114. boolean valid = true;
  115. String userName = username_ET.getText().toString();
  116. String password = password_ET.getText().toString();
  117. String phone = phoneNumber_ET.getText().toString();
  118. String email = email_ET.getText().toString();
  119.  
  120. if (userName.isEmpty()) {
  121. username_ET.setError(AppConstants.EMPTY_FIELD);
  122. valid = false;
  123. } else {
  124. username_ET.setError(null);
  125. }
  126.  
  127. if (password.isEmpty()) {
  128. password_ET.setError(AppConstants.EMPTY_FIELD);
  129. valid = false;
  130. } else {
  131. password_ET.setError(null);
  132. }
  133.  
  134. if (phone.isEmpty()) {
  135. phoneNumber_ET.setError(AppConstants.EMPTY_FIELD);
  136. valid = false;
  137. } else {
  138. phoneNumber_ET.setError(null);
  139. }
  140.  
  141. if (email.isEmpty()) {
  142. email_ET.setError(AppConstants.EMPTY_FIELD);
  143. valid = false;
  144. } else if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()) {
  145. email_ET.setError(AppConstants.INVALID_EMAIL);
  146. valid = false;
  147. } else {
  148. email_ET.setError(null);
  149. }
  150. return valid;
  151. }
  152.  
  153.  
  154. private void register_user(UsersModel usersModel) {
  155. Map<String, String> params = new HashMap<>();
  156. params.put(AppConstants.USERNAME, usersModel.getUsername());
  157. params.put(AppConstants.PASSWORD, usersModel.getPassword());
  158. params.put(AppConstants.REGISTRATION_EMAIL, usersModel.getEmail());
  159. params.put(AppConstants.REGISTRATION_PHONE, usersModel.getPhone());
  160.  
  161. _VolleyRequestHandler.HandleRequests(VolleyRequestHandler.SINGUP_INT, params, this);
  162.  
  163. }
  164.  
  165. @Override
  166. public void RequestSuccess(Object response) {
  167. Utils.hideLoader();
  168. Toast.makeText(this, "response " + response, Toast.LENGTH_LONG).show();
  169. }
  170.  
  171. @Override
  172. public void RequestFailed(String error) {
  173. Utils.hideLoader();
  174. Toast.makeText(this, error, Toast.LENGTH_LONG).show();
  175. }
  176. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement