Skip to content

Instantly share code, notes, and snippets.

@robertoallende
Created December 23, 2015 08:59
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 robertoallende/864912b923eaac8322a4 to your computer and use it in GitHub Desktop.
Save robertoallende/864912b923eaac8322a4 to your computer and use it in GitHub Desktop.
makeIntent
public static Intent makeIntent(HashMap<String, String> groups, Context context) {
Intent intent = new Intent(context, GroupListActivity.class);
intent.putExtra(GROUPS, groups);
return intent;
}
@robertoallende
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment