Skip to content

Instantly share code, notes, and snippets.

@mgp
Created March 12, 2015 01:16
Show Gist options
  • Save mgp/3da4b06d308f5b1d0490 to your computer and use it in GitHub Desktop.
Save mgp/3da4b06d308f5b1d0490 to your computer and use it in GitHub Desktop.
Load an article
/*
getFragmentManager()
.beginTransaction()
.replace(android.R.id.content, TopicTutorialListFragment.newInstance(subject))
.addToBackStack("subject")
.commit();
*/
System.out.println("navigating");
Article article = new Article("xbdcfe503", "An Introduction to the Protestant Reformation");
Intent intent = ArticleViewActivity.buildIntent(this, article);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment