- xUtils 包含了很多实用的android工具。
- xUtils 源于Afinal框架,对Afinal进行了大量重构重构,尤其是http模块全面兼容各种http请求。
- xUtils 具有Afinal的一些特性如:无需考虑bitmap在android中加载的时候oom的问题和快速滑动的时候图片加载位置错位等问题;简洁,约定大于配置...
-
DbUtils模块:
- android中的orm框架,一行代码就可以进行增删改查;
- 支持绑定外键, 保存实体时外键自动保存;
- 自动加载外键关联实体,支持延时加载;
- 支持链式表达查询,参考下面的介绍或Demo中的例子。
-
ViewUtils模块:
- android中的ioc框架,完全注解方式就可以进行UI绑定和事件绑定。
-
HttpUtils模块:
- 支持同步,异步方式的请求,支持大文件上传;
- 支持GET,POST,PUT,MOVE,COPY,DELETE,HEAD请求,
- 支持multipart上传设置subtype如related。
- 下载支持302重定向。
- 返回文本内容的GET请求支持缓存,可设置默认过期时间和针对当前请求的过期时间。图片的缓存由BitmapUtils模块提供支持。
-
BitmapUtils模块:
- 加载bitmap的时候无需考虑bitmap加载过程中出现的oom和android容器快速滑动时候出现的图片错位等现象;
- 内存管理使用lru算法,更好的管理bitmap内存;
- 可配置线程加载线程数量,缓存大小,缓存路径,加载显示动画等...
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
DbUtils db = DbUtils.create(this);
User user = new User(); //这里需要注意的是User对象必须有id属性,或者有通过@ID注解的属性
user.setEmail("[email protected]");
user.setName("wyouflf");
db.save(user); // 使用saveBindingId保存实体时会为实体的id赋值
...
// 查找
Parent entity = db.findById(Parent.class, parent.getId());
Parent entity = db.findFirst(entity);//通过entity的属性查找
List<Parent> list = db.findAll(entity);//通过entity的属性查找
Parent Parent = db.findFirst(Selector.from(Parent.class).where(WhereBuilder.b("name","=","test")));
List<Parent> list = db.findAll(Selector.from(Parent.class).where(WhereBuilder.b("id","<",54)).orderBy("id").limit(10));
DbModel dbModel = db.findDbModelAll(Selector.from(Parent.class).select("name"));//select("name")只取出name列
List<DbModel> dbModels = db.findDbModelAll(Selector.from(Parent.class).groupBy("name").select("name", "count(name)"));
...
- 修改自原来的FinalActivity, 但没有使用继承式的实用方式。
- 完全注解方式就可以进行UI绑定和事件绑定。
- 无需findViewById和setClickListener等。
@ViewInject(id=R.id.button,click="btnClick") Button button;
@ViewInject(id=R.id.textView) TextView textView;
...
//在使用注解对象之前调用(如onCreate中):
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ViewUtils.inject(this);
...
textView.setText("some text...");
...
}
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) {
}
});
RequestParams params = new RequestParams();
params.addHeader("name", "value");
params.addQueryStringParameter("name", "value");
params.addBodyParameter("name", "value");
params.addBodyParameter("file", new File("path"));
...
HttpUtils http = new HttpUtils();
http.send(HttpRequest.HttpMethod.POST,
"uploadUrl....",
params,
new RequestCallBack<String>() {
@Override
public void onStart() {
testTextView.setText("conn...");
}
@Override
public void onLoading(long total, long current) {
testTextView.setText(current + "/" + total);
}
@Override
public void onSuccess(String result) {
testTextView.setText("upload response:" + result.getPath());
}
@Override
public void onFailure(Throwable error, String msg) {
testTextView.setText(msg);
}
});
- 支持断点续传,随时停止下载任务,开始任务
HttpUtils http = new HttpUtils();
HttpHandler handler = http.download("http://apache.dataguru.cn/httpcomponents/httpclient/source/httpcomponents-client-4.2.5-src.zip",
"/sdcard/httpcomponents-client-4.2.5-src.zip",
new RequestCallBack<File>() {
@Override
public void onStart() {
testTextView.setText("conn...");
}
@Override
public void onLoading(long total, long current) {
testTextView.setText(current + "/" + total);
}
@Override
public void onSuccess(File result) {
testTextView.setText("downloaded:" + result.getPath());
}
@Override
public void onFailure(Throwable error, String msg) {
testTextView.setText(msg);
}
});
...
//调用stop()方法停止下载
handler.stop();
...
BitmapUtils.create(this).display(testImageView, "http://bbs.lidroid.com/static/image/common/logo.png");
//BitmapUtils.create(this).display(testImageView, "/sdcard/test.jpg");默认支持加载本地图片
LogUtils.d("wyouflf"); // 自动添加TAG,格式: className[methodName, lineNumber],可设置全局的allowD,allowE...
- Email: [email protected], [email protected]
- 有任何建议都可以给我发邮件, 你也可以加入这个QQ群:330445659, 技术交流,idea分享 _