概述:
项目地址:https://github.com/nostra13/Android-Universal-Image-Loader
UIL(Universal-Image-Loader)异步图像加载、缓存和显示.这个图片异步加载并缓存的类已经被很多开发者所使用,是最常用的几个开源库之一,主流的应用,随便反编译几个火的项目,都可以见到它的身影。
同类类库(Picasso),尽管Picass...
分类:
移动开发 时间:
2015-05-06 18:03:53
阅读次数:
237
参考了http://blog.csdn.net/xiaanming/article/details/26810303这篇文章,对原作者感谢。
优秀无需多说,github项目地址:https://github.com/nostra13/Android-Universal-Image-Loader。
其主要特征:
多线程下载图片,图片可以来源于网络,文件系统,项目文件夹assets中以及...
分类:
移动开发 时间:
2015-05-06 13:18:24
阅读次数:
142
在上一篇在VS2015 RC打开CTP中创建的工程,我们介绍了怎么在RC中打开CTP中创建的Universal 工程,这一篇我们来讲下怎么将Windows 8.1/WP8.1的应用迁移到Universal Windows Platform上。2015RC中,我们可以将8.1的应用迁移到统一平台上,进...
1.准备工作=>Universal-usb-installer、下载最新版的kali-linux(最新的未必是最好用的bug太多)、>8GU盘、BOOTICEx86.exe2.先格式化U盘,然后用Universal-usb-installer将kali linux系统刻录到U盘3.打开BOOTICE...
分类:
系统相关 时间:
2015-05-04 19:32:54
阅读次数:
287
VS2015终于出了RC了!小伙伴们快来安装试用吧,地址在这里,还有新的Windows 10开发工具哦,要不然是开发不了Universal Windows App的,安装前记得卸载CTP版本。新的RC版本有了些新变化,不能直接打开CTP中创建的工程-。-,需要手动做一些修改才行。如果你之前使用VS2...
分类:
其他好文 时间:
2015-05-04 19:32:34
阅读次数:
153
??
硬盘缓存策略:
LimitedAgeDiscCache(设定文件存活的最长时间,当超过这个值,就删除该文件)
UnlimitedDiscCache(这个缓存类没有任何的限制)
继承关系:
public class LimitedAgeDiscCache extends BaseDiscCache
public abstractclass BaseDiscCach...
分类:
移动开发 时间:
2015-05-04 18:08:00
阅读次数:
187
After creating "Blank App(Windows Universal)" targeting Windows Phone 10 in Visual Studio 2015 RC and tried to deploy it to the device (and have chang...
分类:
Windows程序 时间:
2015-05-03 23:35:20
阅读次数:
1189
WeakMemoryCache 源码:
BaseMemoryCache参见:http://blog.csdn.net/woliuyunyicai/article/details/45330867
/**
* Memory cache with {@linkplain WeakReference weak references} to {@linkplain android.graphic...
分类:
移动开发 时间:
2015-05-03 12:05:32
阅读次数:
230
iPad开发(Universal Applications)一、iPad1、判断是否在iPad上 BOOL iPad = ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad);二、UISplitView....
分类:
其他好文 时间:
2015-05-03 11:55:22
阅读次数:
174
LRULimitedMemoryCache源码:
/**
* (cache size limited)Size of all stored bitmaps will not to exceed size limit.
* (删除策略LRU)When cache reaches limit size then the least recently used bitmap is delete...
分类:
移动开发 时间:
2015-05-03 10:39:25
阅读次数:
186