ImageLoader加载图片

先导universal-image-loader-1.9.3包

在application配置 android:name=".MyApplication"

intent权限

复制代码
 1 package com.ch.day13_imageloaderdemo;
 2 
 3 import java.io.File;
 4  5 import com.nostra13.universalimageloader.cache.disc.impl.UnlimitedDiscCache;  6 import com.nostra13.universalimageloader.cache.disc.naming.HashCodeFileNameGenerator;  7 import com.nostra13.universalimageloader.cache.disc.naming.Md5FileNameGenerator;  8 import com.nostra13.universalimageloader.cache.memory.impl.LruMemoryCache;  9 import com.nostra13.universalimageloader.core.DisplayImageOptions; 10 import com.nostra13.universalimageloader.core.ImageLoader; 11 import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; 12 import com.nostra13.universalimageloader.core.assist.ImageScaleType; 13 import com.nostra13.universalimageloader.core.assist.QueueProcessingType; 14 import com.nostra13.universalimageloader.core.decode.BaseImageDecoder; 15 import com.nostra13.universalimageloader.core.display.FadeInBitmapDisplayer; 16 import com.nostra13.universalimageloader.core.display.RoundedBitmapDisplayer; 17 import com.nostra13.universalimageloader.core.download.BaseImageDownloader; 18 19 import android.app.Application; 20 import android.graphics.Bitmap; 21 import android.os.Environment; 22 import android.util.Log; 23 24 public class MyApplication extends Application{ 25 26  @Override 27 public void onCreate() { 28 // TODO Auto-generated method stub 29  super.onCreate(); 30 Log.i("TAG", "自定义的application类调用了....."); 31 //创建ImageLoader的默认配置 32 // ImageLoaderConfiguration confing = ImageLoaderConfiguration.createDefault(this); 33 //得到sdcard路径 34 String sdpath = Environment.getExternalStorageDirectory().getPath(); 35 //自定义ImageLoaderConfiguration 36 ImageLoaderConfiguration confing = new ImageLoaderConfiguration.Builder(this) 37 .memoryCacheExtraOptions(480, 800)// default = device screen dimensions 内存缓存文件的最大长宽 38 .diskCacheExtraOptions(480, 800, null)// 本地缓存的详细信息(缓存的最大长宽),最好不要设置这个 39 // .taskExecutor(null) 40 // .taskExecutorForCachedImages(null) 41 .threadPoolSize(3)// default 线程池内加载的数量 42 .threadPriority(Thread.NORM_PRIORITY-2) // default 设置当前线程的优先级 43 .tasksProcessingOrder(QueueProcessingType.FIFO)//任务的处理顺序 44  .denyCacheImageMultipleSizesInMemory() 45 .memoryCache(new LruMemoryCache(2 * 1024 * 1024))////设置自己的内存缓存大小 2m 46 .memoryCacheSize(2 * 1024 * 1024) 47 // .memoryCacheSizePercentage(13) 48 .diskCache(new UnlimitedDiscCache(new File(sdpath+"/app1407a/imgcache")))//设置缓存的图片在sdcard中的存放位置 49 .diskCacheSize(50 * 1024 * 1024) 50 .diskCacheFileCount(100) 51 .diskCacheFileNameGenerator(new Md5FileNameGenerator())//md5加密的方式,或new HashCodeFileNameGenerator() 52 .imageDownloader(new BaseImageDownloader(this)) 53 // .imageDecoder(new BaseImageDecoder(true)) 54  .defaultDisplayImageOptions(null)//不适用默认的图片加载配置,使用自定义的 55  .writeDebugLogs() 56  .build(); 57 //初始化 58  ImageLoader.getInstance().init(confing); 59  } 60 61 public static DisplayImageOptions getOptions(){ 62 //自定义加载图片的配置信息 63  DisplayImageOptions option = new DisplayImageOptions.Builder() 64 .showImageOnLoading(R.drawable.ic_launcher)// 设置图片下载期间显示的图片 65 .showImageForEmptyUri(R.drawable.emptyurl) // 设置图片Uri为空或是错误的时候显示的图片 66 .showImageOnFail(R.drawable.emptyurl)// 设置图片加载或解码过程中发生错误显示的图片 67 .resetViewBeforeLoading(false)// default 设置图片在加载前是否重置、复位 68 // .delayBeforeLoading(1000)// 下载前的延迟时间 69 .cacheInMemory(true)// default 设置下载的图片是否缓存在内存中 70 .cacheOnDisk(true)// default 设置下载的图片是否缓存在SD卡中 71 .considerExifParams(false) 72 .imageScaleType(ImageScaleType.IN_SAMPLE_POWER_OF_2)//设置图片的显示比例 73 .bitmapConfig(Bitmap.Config.RGB_565)// default 设置图片的解码类型 74 // .displayer(new RoundedBitmapDisplayer(75))//设置图片的圆角半径 75 .displayer(new FadeInBitmapDisplayer(8000))//设置图片显示的透明度过程时间 76 .build(); 77 78 return option; 79 } 80 81 }
复制代码
复制代码
 1 package com.ch.day13_imageloaderdemo;
 2 
 3 import com.nostra13.universalimageloader.core.ImageLoader;
 4 import com.nostra13.universalimageloader.core.assist.FailReason;  5 import com.nostra13.universalimageloader.core.listener.ImageLoadingListener;  6 import com.nostra13.universalimageloader.core.listener.ImageLoadingProgressListener;  7  8 import android.os.Bundle;  9 import android.app.Activity; 10 import android.app.ProgressDialog; 11 import android.graphics.Bitmap; 12 import android.util.Log; 13 import android.view.Menu; 14 import android.view.View; 15 import android.widget.ImageView; 16 17 public class MainActivity extends Activity { 18 private ImageView img; 19 String url = "http://photocdn.sohu.com/kis/fengmian/1193/1193693/1193693_ver_big.jpg"; 20 String url1 = "http://a0.att.hudong.com/15/08/300218769736132194086202411_950.jpg"; 21  @Override 22 protected void onCreate(Bundle savedInstanceState) { 23  super.onCreate(savedInstanceState); 24  setContentView(R.layout.activity_main); 25 26  init(); 27  } 28 29 public void init(){ 30 img = (ImageView) findViewById(R.id.img); 31 //通过ImageLoader加载网络图片,配置给img 32 // ImageLoader.getInstance().displayImage(url, img); 33 // ImageLoader.getInstance().displayImage(url, img, MyApplication.getOptions()); 34 // ImageLoader.getInstance().displayImage(url, img, MyApplication.getOptions(), new ImageLoadingListener() { 35 // @Override 36 // public void onLoadingStarted(String arg0, View arg1) { 37 // } 38 // @Override 39 // public void onLoadingFailed(String arg0, View arg1, FailReason arg2) { 40 // } 41 // @Override 42 // public void onLoadingComplete(String arg0, View arg1, Bitmap arg2) { 43 // } 44 // @Override 45 // public void onLoadingCancelled(String arg0, View arg1) { 46 // } 47 // }); 48 final ProgressDialog pro = new ProgressDialog(this); 49 pro.setMessage("努力加载中。。。"); 50  pro.setIcon(R.drawable.ic_launcher); 51  pro.show(); 52 ImageLoader.getInstance().displayImage(url1, img, MyApplication.getOptions(), null, new ImageLoadingProgressListener() { 53 54  @Override 55 public void onProgressUpdate(String arg0, View arg1, int arg2, int arg3) { 56 // TODO Auto-generated method stub 57 Log.i("TAG", arg0+",,"+arg2+","+arg3); 58 float rs = ((float)arg2)/arg3; 59 pro.setMessage("当前加载到:"+rs*100+"%"); 60 if(arg2 == arg3){ 61  pro.cancel(); 62  } 63  } 64  }); 65  } 66 67  @Override 68 public boolean onCreateOptionsMenu(Menu menu) { 69 // Inflate the menu; this adds items to the action bar if it is present. 70  getMenuInflater().inflate(R.menu.activity_main, menu); 71 return true; 72 } 73 74 }
复制代码

转载于:https://www.cnblogs.com/wbp0818/p/5458519.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/396096.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

hackintosh黑苹果_为什么您的下一个Mac应该是Hackintosh?

hackintosh黑苹果by Sebastian Dobrincu塞巴斯蒂安多布林库(Sebastian Dobrincu) 为什么您的下一个Mac应该是Hackintosh? (Why Your Next Mac Should Be a Hackintosh ?) I just finished a 48-hour Hackintosh building marathon. It was a fun experience and I…

一张图解释什么是遗传算法_遗传算法简介及代码详解

(allele)数据值,属性,值基因座(locus)位置,iterator位置表现型(phenotype)参数集,解码结构,候选解染色体:又可以叫做基因型个体(individuals)群体/种群(population):一定数量的个体组成&#xf…

c语言程序设计学生程序查询,《c语言程序设计报告-学生信息管理系统》.doc

《c语言程序设计报告-学生信息管理系统》中南大学??C语言程序设计实践报告?????题 目 学生信息管理系统学生姓名 张眼指导教师 刘伟荣学 院 信息科学与工程学院专业班级 电气信息1113班完成时间 2012年6月28日星期四?1.设计任务及设计目标学生信息管理系统是基于系统主…

ListString 和 ArrayListString的区别

最近对这两个问题比较懵逼&#xff0c;关于List和ArrayList、List<String> list new ArrayList<String>(); 好了&#xff0c;先搞明白List 和 ArrayList吧。 List是一个接口&#xff0c;是Collection接口的一个子接口&#xff0c;是一个有序的集合。 ArrayList是L…

java城市级联一次查询_我的城市没有任何设计活动,所以我自己组织了一次。...

java城市级联一次查询by Marty Laurita由Marty Laurita 我的城市没有任何设计活动&#xff0c;所以我自己组织了一次。 (There weren’t any design events in my city, so I organized one myself.) “The meeting of two personalities is like the contact of two chemical…

Access denied for user 'root'@'localhost' (using password: YES) 问题解决小记

初学php&#xff0c;按照视频安装后好mysql后 终端运行命令 mysql -u root -p 然后输入安装mysql时输入的密码六个1&#xff0c;会报这样的错误&#xff1a;Access denied for user rootlocalhost (using password: YES) &#xff1b; 百度了一大堆&#xff0c;大海捞针一般找…

汇编总结2

一、寄存器 一个典型的cpu是由运算器&#xff0c;控制器&#xff0c;寄存器等器件组成的。 内部总线实现CPU内部各个器件之间的联系 外部总线实现cpu和主板上其他器件的联系 AX,BX,CX,DX通用寄存器 SI,DI,BP,SP基址和变址寄存器 CS,SS,DS,ES段寄存器 IP,FLAGS指令指针和标志寄存…

创业者具备的五大技能_一、如今大学生创业需要具备哪些知识与技能?

我参加过两次互联网&#xff0b;大赛&#xff0c;分别获得过省赛的金奖与银奖&#xff0c;还曾参加山东省大大小小比赛26场&#xff0c;金奖累计获得12次。对当代创业的大学生所应具备哪些基本素质深有体会。&#xff08;1&#xff09;技能&#xff1a;1、自我认知及科学规划能…

c语言定时器回调函数的参数,定时器的简单实现即回调函数的运用

&#xfeff;&#xfeff;这两天在 研究回调函数就想实现简单的定时器&#xff0c;如下是鄙人的程序望指教。ios#include #include using namespace std;app#define MAXNUM 256函数typedef void (*timerProcessFunc)(void*);spatypedef struct{unsigned int id;int timeout; /…

BZOJ3387栅栏行动

首先&#xff0c;很容易想到Dp。设f[i][0]表示第i个栅栏走左边的最短路&#xff0c;f[i][1]表示第i个栅栏走右边的最短路。 所以&#xff0c;我们要找一个刚好在第i个栅栏的左右边界下面的栅栏。如图所示&#xff1a; 则有&#xff1a; f[i][0] min(f[k][0] |Left[i] - Left[…

udacity开源的数据_评论:Udacity数据分析师纳米学位计划

udacity开源的数据by David Venturi大卫文图里(David Venturi) 评论&#xff1a;Udacity数据分析师纳米学位计划 (Review: Udacity Data Analyst Nanodegree Program) Udacity’s Data Analyst Nanodegree program was one of the first online data science programs in the …

凌晨四点钟深圳的风景

科比有过一句很励志的故事&#xff1a;凌晨四点钟洛杉矶的风景。 很多人把科比当成榜样&#xff0c;不仅仅因为他精湛的球技&#xff0c;更是因为他远超常人的职业精神。 其实做到这一点&#xff0c;并不难&#xff0c;难的是坚持。坚持那么早时间起床&#xff0c;坚持十年如一…

小程序沉浸式_古北水镇红叶祭嵌入戏精学院 全新文旅沉浸模式让游客嗨起来...

2020年10月17日-24日&#xff0c;古北水镇第二届红叶祭火热来袭。今年除了“超级漫展二次元度假”的模式&#xff0c;古北水镇与顶级沉浸互动体验运营方——INX戏精学院合作&#xff0c;在深度体验空间的同时&#xff0c;加入了互动式的实景游戏体验&#xff0c;通过演员互动&a…

又拍云刘平阳,理性竞争下的技术品牌提升之道

云服务市场趋渐平稳&#xff0c;在这种情况下&#xff0c;就需要通过对某一项技术的深入应用来实现服务的精致化。同时&#xff0c;对品牌的打造和包装也必不可少。\\又拍云在2010年开始提供云服务&#xff0c;经过多年的发展&#xff0c;以及市场策略的转变&#xff0c;决定对…

编写代码的工作在哪找_编写事件代码如何帮助我获得了出色的工作

编写代码的工作在哪找Everyone kept telling me about the importance of networking, but it was always something I blew off. I’m pretty quiet and introverted, particularly when meeting strangers. I thought I just wasn’t built for networking.每个人都在不断告诉…

int x = 0x13 c语言,2004年7月全国高等教育自学考试微型计算机原理与接口技术试题...

课程代码&#xff1a;02205第一部分 C语言程序设计一、单项选择题(在每小题的四个备选答案中&#xff0c;选出一个正确答案&#xff0c;并将正确答案的序号填在题干的括号内。每小题2分&#xff0c;共10分)1.4位无符号二进制数表示的数的范围是( )。A.0&#xff5e;9999 B.…

iOS开发简单高效的数据存储

在iOS开发过程中&#xff0c;不管是做什么应用&#xff0c;都会碰到数据保存的问题&#xff0c;你是用什么方法来持久保存数据的&#xff1f;这是在几乎每一次关于iOS技术的交流或讨论都会被提到的问题&#xff0c;而且大家对这个问题的热情持续高涨。本文主要从概念上把“数据…

Oracle中Date和Timestamp的区别

Date和Timestamp精度不一样&#xff1a; 01&#xff09;Timestamp精确到了秒的小数点&#xff08;如&#xff1a;2018-11-13 16:40:03.698&#xff09;&#xff1b; 02&#xff09;Date只精确到整数的秒&#xff08;如&#xff1a;2018-11-13 16:40:03&#xff09; 转载于:http…

table偏见和HTML仇外心理

by Anthony Ng由Anthony Ng <table>偏见和HTML仇外心理 (<table> prejudice and HTML xenophobia) I was looking over some HTML with a student the other day when we stumbled onto a <table>.前几天&#xff0c;当我偶然发现一个<table>时&#…

回滚机制_【巨杉数据库SequoiaDB】巨杉 Tech | 并发性与锁机制解析与实践

01概述数据库是一个多用户使用的共享资源。当多个用户并发地存取数据时&#xff0c;在数据库中就会产生多个事务同时存取同一数据的情况。若对并发操作不加控制就可能会读取和存储不正确的数据&#xff0c;破坏数据库的一致性。加锁是实现数据库并发控制的一个非常重要的技术。…