Created
March 12, 2015 01:16
-
-
Save mgp/3da4b06d308f5b1d0490 to your computer and use it in GitHub Desktop.
Load an article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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