Skip to content

Instantly share code, notes, and snippets.

@AliAsadi
Created May 30, 2019 14:43
Show Gist options
  • Select an option

  • Save AliAsadi/b84ffe4e3bbab0c72171bbbf004831b2 to your computer and use it in GitHub Desktop.

Select an option

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