I need to load some files and store them in a static variable.
The load and getter methods are required in almost every Activity.
I was going to make the methods static, but some blogger dis-liked it.
Main advantages and disadvantages for both approaches for me are as follows.
singleton
advantages : Ability to keep polymorphism.
disadvantages : Have to call getInstantace methods in every Activity.
static method is vice-versa.
Please guide me in choosing between the two or any other approach.
Any help would be appreciated.