Skip to content

Instantly share code, notes, and snippets.

@dlemures
Last active May 5, 2016 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlemures/6fdc107f8870b03f5248d54eac34e8fd to your computer and use it in GitHub Desktop.
Save dlemures/6fdc107f8870b03f5248d54eac34e8fd to your computer and use it in GitHub Desktop.
Intent creation V1 for Henson article
Intent intent = new Intent(context, DetailActivity.class);
intent.putExtra(EXTRA_ITEM_ID, selectedItem.id);
intent.putExtra(EXTRA_SHOW_MAP, true);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment