Back to project page SimpleTwitterClient.
The source code is released under:
Apache License
If you think the Android project SimpleTwitterClient listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codepath.apps.basictwitter; /*from ww w . j a v a 2 s . c o m*/ import android.content.Context; import com.codepath.apps.basictwitter.clients.TwitterClient; import com.nostra13.universalimageloader.core.DisplayImageOptions; import com.nostra13.universalimageloader.core.ImageLoader; import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; /** * This is the Android application itself and is used to configure various settings * including the image cache in memory and on disk. This also adds a singleton * for accessing the relevant rest client. */ public class TwitterApplication extends com.activeandroid.app.Application { private static Context context; public static TwitterClient getRestClient() { return (TwitterClient) TwitterClient.getInstance(TwitterClient.class, TwitterApplication.context); } @Override public void onCreate() { super.onCreate(); TwitterApplication.context = this; // Create global configuration and initialize ImageLoader with this configuration DisplayImageOptions defaultOptions = new DisplayImageOptions.Builder(). cacheInMemory().cacheOnDisc().build(); ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder( getApplicationContext()) .defaultDisplayImageOptions(defaultOptions) .build(); ImageLoader.getInstance().init(config); } }