Back to project page RssReader.
The source code is released under:
MIT License
If you think the Android project RssReader 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.vicmns.rssreader.app; // w ww . j av a2 s.c o m import com.nostra13.universalimageloader.core.ImageLoader; import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; import android.app.Application; import android.graphics.Bitmap.CompressFormat; public class RssReaderApplication extends Application { @Override public void onCreate() { //File cacheDir = StorageUtils.getCacheDirectory(this); ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(this) .discCacheExtraOptions(480, 800, CompressFormat.JPEG, 85, null) .discCacheFileCount(300) .writeDebugLogs() .build(); ImageLoader.getInstance().init(config); super.onCreate(); } }