Back to project page Checkers.
The source code is released under:
Apache License
If you think the Android project Checkers listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.parse.starter; /*from ww w.j a va 2s . c o m*/ import com.parse.ParseException; import com.parse.ParseUser; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class SignUpActivity extends Activity implements OnClickListener{ EditText username, password; Button signup; TextView warning; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.signupscreen); username = (EditText)findViewById(R.id.username1); password = (EditText)findViewById(R.id.password1); signup = (Button)findViewById(R.id.signUpButton1); warning = (TextView)findViewById(R.id.tvWarning1); signup.setOnClickListener(this); } @Override public void onClick(View v) { // TODO Auto-generated method stub String uName = username.getText().toString(); String pass = password.getText().toString(); if( uName != null && pass != null ){ ParseUser user = new ParseUser(); user.setUsername(uName); user.setEmail(uName); user.setPassword(pass); user.put("curGameId", -1); user.put("curColor", 0); try { user.signUp(); ParseUser.logIn(uName, pass); Intent myIntent = new Intent( SignUpActivity.this, ParseStarterProjectActivity.class); myIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK); startActivityForResult(myIntent, 0); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); warning.setVisibility(TextView.VISIBLE); } } } }