Last active
May 31, 2018 08:51
-
-
Save mbobiosio/b7917e7c8bd50ab6f891c0632d85912d to your computer and use it in GitHub Desktop.
Fragment NewInstance
This file contains 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
//Constructor Class | |
public AboutFragment() { | |
} | |
// New Instance Constructor | |
public static AboutFragment newInstance() { | |
AboutFragment fragment = new AboutFragment(); | |
Bundle args = new Bundle(); | |
fragment.setArguments(args); | |
return fragment; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment