sourcey / materiallogindemo

Android login and signup demo with material design
http://sourcey.com/beautiful-android-login-and-signup-screens-with-material-design/
833 stars 633 forks source link

Newbie Question. How do you open new activity after signup success? #11

Closed tranh9 closed 6 years ago

tranh9 commented 6 years ago

I tried creating new intent after the onSignupSuccess() and onActivityResult() but they would always crash my next activity (an tutorial for the app). My tutorial activity would work in the MainActivity but not within the your loginActivity or SignupActivity. Any help would be very much appreciated. Thank you.

my intent code: Intent intent = new Intent(getApplicationContext(), IntroActivity.class); startActivity(intent);