Skip to content

Instantly share code, notes, and snippets.

@AliAsadi
Created May 30, 2019 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliAsadi/b84ffe4e3bbab0c72171bbbf004831b2 to your computer and use it in GitHub Desktop.
Save AliAsadi/b84ffe4e3bbab0c72171bbbf004831b2 to your computer and use it in GitHub Desktop.
public class SingletonManager {
private static SingletonManager singleton;
private Context context;
private SingletonManager(Context context) {
this.context = context;
}
public synchronized static SingletonManager getInstance(Context context) {
if (singleton == null) {
singleton = new SingletonManager(context);
}
return singleton;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment