Xutils框架使用

1.BitmapUtils优化

public class BitmapHelper {
	private BitmapHelper() {
	}

	private static BitmapUtils bitmapUtils;

	/**
	 * BitmapUtils不是单例的 根据需要重载多个获取实例的方法
	 * 
	 * @param appContext
	 *            application context
	 * @return
	 */
	public static BitmapUtils getBitmapUtils() {
		if (bitmapUtils == null) {
			// 第二个参数 缓存图片的路径 // 加载图片 最多消耗多少比例的内存 0.05-0.8f
			//bitmapUtils = new BitmapUtils(UiUtils.getContext(), FileUtils
			//		.getIconDir().getAbsolutePath(), 0.3f);
<pre name="code" class="java"><span style="white-space:pre">	</span><pre name="code" class="java">bitmapUtils<span style="font-family: Arial, Helvetica, sans-serif;">= new BitmapUtils(mActivity);//使用无参数的即可</span>
bitmapUtils.<span style="font-family: Arial, Helvetica, sans-serif;">configDefaultLoadingImage(R.drawable.topnews_item_default);// 设置默认图片</span>

 }return bitmapUtils;}} 
 
 调用: 
 
bitmapUtils.display(image, url);
对listview快速滑动的优化:因为快速滑动时是不需要加载图片的

// 第二个参数 慢慢滑动的时候是否加载图片 false  加载   true 不加载
		//  第三个参数  飞速滑动的时候是否加载图片  true 不加载 
		listView.setOnScrollListener(new PauseOnScrollListener(bitmapUtils, false, true));



你可能感兴趣的:(Xutils框架使用)