码迷,mamicode.com
首页 > 移动开发 > 详细

安卓 网络请求数据处理(在适配器中处理)

时间:2017-07-31 15:50:56      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:ted   with   mil   util   nbsp   parse   用法   线程   create   

网络请求:

在onRespend里

EntityCatogory response

response 对象    用法不介绍了

 

存起来:

msg.obj = response新开线程

EntityCatogory obj = (EntityCatogory)msg.obj;

TBCategory databased = new TBCategory();

databased.key = ...(keyy)..;

databased.content= JGson.instance().gson().toJson(response);!!!!!不解构 搞成string直接传

databased.createAt = System.currentTimeMillis();

 

 

缓存用起来:

TbCategory databaseCache = DbHelper.queryCategoryCacheByKey(keyy);

if (databaseCache != null && databaseCache.content != null && !DateUtils.isExpire(databaseCache.createdAt)) {
brandData = GsonUtils.parseJsonWithGson(databaseCache.content, EntityCatogory.class);
}

brandData 对象    用法不介绍了

 

安卓 网络请求数据处理(在适配器中处理)

标签:ted   with   mil   util   nbsp   parse   用法   线程   create   

原文地址:http://www.cnblogs.com/vitabebeauty/p/7263078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!