Android 工具包:xUtils
jopen
11年前
xUtils简介
- xUtils 包含了很多实用的android工具。
- xUtils 源于Afinal框架,对Afinal进行了适当的精简,和一些适度的扩展和重构。
- xUtils 具有Afinal的一些特性如:无需考虑bitmap在android中加载的时候oom的问题和快速滑动的时候图片加载位置错位等问题; 简洁,约定大于配置...
目前xUtils主要有四大模块:
- DbUtils模块:android中的orm框架,一行代码就可以进行增删改查。
- ViewUtils模块:android中的ioc框架,完全注解方式就可以进行UI绑定和事件绑定。
- HttpUtils模块:支持同步,异步方式的请求,支持大文件上传;支持GET,POST,PUT,MOVE,COPY,DELETE,HEAD请求,支持multipart上传设置subtype如related。
- BitmapUtils模块:加载bitmap的时候无需考虑bitmap加载过程中出现的oom和android容器快速滑动时候出现的图片错位等现 象;内存管理使用lru算法,更好的管理bitmap内存;可配置线程加载线程数量,缓存大小,缓存路径,加载显示动画等...
HttpUtils使用方法:
普通get方法
HttpUtils http = new HttpUtils(); http.send(HttpRequest.HttpMethod.GET, "http://www.lidroid.com", new RequestCallBack<String>(){ @Override public void onLoading(long total, long current) { testTextView.setText(current + "/" + total); } @Override public void onSuccess(String result) { textView.setText(result); } @Override public void onStart() { } @Override public void onFailure((Throwable error, String msg) { } });
https://github.com/wyouflf/xUtils