Back to project page SimpleTwitterClient.
The source code is released under:
MIT 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.nickrasband.simpletwitterclient; /* www.j a v a 2 s . c o m*/ import android.content.Context; 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. * * RestClient client = RestClientApp.getRestClient(); * // use client to send requests to API * */ public class SimpleTwitterClientApp extends com.activeandroid.app.Application { private static Context context; @Override public void onCreate() { super.onCreate(); SimpleTwitterClientApp.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); } public static TwitterClient getRestClient() { return (TwitterClient) TwitterClient.getInstance(TwitterClient.class, SimpleTwitterClientApp.context); } }