Skip to content

Instantly share code, notes, and snippets.

@raimonds1503
Created November 7, 2012 18:53
Show Gist options
  • Save raimonds1503/4033611 to your computer and use it in GitHub Desktop.
Save raimonds1503/4033611 to your computer and use it in GitHub Desktop.
Why crashing?
private void showRegister(View view) {
try {
Intent intent = new Intent(this, RegisterActivity.class);
intent.putExtra("t", "t");
startActivity(intent);
} catch (IllegalStateException e) {
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment