Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Nidhi Saini
2,627 PointsAndroid:What happens behind the screen when we press Signup button?
Android:What happens behind the screen when we press Signup button? what happens when we press verify your email?
2 Answers
Faiz Ahmed
Courses Plus Student 40 PointsIt firsts removes all the whitespaces from the text entered , then it creates a new parseuser by the code ''' ParseUser newuser = new ParseUser() ''' After this it enters all the data based on the text entered in the edittexr
newuser.setUsername(username); newuser.setPassword(password); newuser.setEmail(email);
After the new user is created on parse.com it runs the done method, public void done(ParseException e) which then leads to the mainactivity class.
Faiz Ahmed
Courses Plus Student 40 PointsWhen you press verify email button it sends an email to the registered user with the password.