Last active
March 12, 2017 13:54
-
-
Save rakawestu/bc3a67d8e0a322d3ccc22d1e2194a030 to your computer and use it in GitHub Desktop.
Example Library User Function
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
public void useFunction1ExampleLibrary() { | |
ExampleLibrary.getInstance().showExampleLibraryScreen( | |
YourActivity.this, | |
otherParams | |
); | |
} | |
public void useFunction2ExampleLibrary() { | |
ExampleLibrary.getInstance().exitExampleLibraryScreen( | |
YourActivity.this, | |
otherParams1, | |
otherParams2 | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment