Extending the Android Application class and dealing with Singleton | devahead BLOG
package com.devahead.extendingandroidapplication; import android.app.Application; public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); // Initialize the singletons so their instances // are bound to the app
www.devahead.com |