Skip to content

Instantly share code, notes, and snippets.

@rdrobinson3
Created June 6, 2013 23:57
Show Gist options
  • Save rdrobinson3/5726041 to your computer and use it in GitHub Desktop.
Save rdrobinson3/5726041 to your computer and use it in GitHub Desktop.
Intent intent;
if(ParseUser.getCurrentUser() == null){
intent = new Intent(this, LoginActivity.class);
}else{
intent = new Intent(this, MainActivity.class);
}
startActivity(intent);
this.finish();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment