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
public static final String ARGUMENT_ARG = "ARGUMENT_ARG"; | |
private String argumentValue; | |
/** | |
* Factory method for passing arguments. | |
*/ | |
public static Fragment getFragment(String argumentValue) { | |
Fragment fragment = new Fragment(); | |
Bundle bundle = new Bundle(); |
NewerOlder