在上篇文章跟大家介绍了Android之使用Android-query框架开发实战(一),本文继续跟大家介绍有关Android-query框架。具体内容请看下文。
异步网络:
1. 添加权限:<uses-permission android:name="android.permission.INTERNET" />
2. 支持的类型
JSONObject
JSONArray
String (HTML, XML)
XmlDom (XML parsing)
XmlPullParser (Large XML files)
byte array
User defined custom type (Transformer)
Bitmap
3. 以Json数据为例,注意,红色部分是随你请求的数据类型一起改变
String url = "http://www.google.com/uds/GnewsSearch?q=Obama&v=1.0"; aq.ajax(url, JSONObject.class, new AjaxCallback<JSONObject>() { @Override public void callback(String url, JSONObject json, AjaxStatus status) { if(json != null){ //successful ajax call, show status code and json content Toast.makeText(aq.getContext(), status.getCode() + ":" + json.toString(), Toast.LENGTH_LONG).show(); }else{ //ajax error, show error code Toast.makeText(aq.getContext(), "Error:" + status.getCode(), Toast.LENGTH_LONG).show(); } } });
上面的形式也可以写成下面一样,他们是无条件对等
public void asyncJson(){ //perform a Google search in just a few lines of code String url = "http://www.google.com/uds/GnewsSearch?q=Obama&v=1.0"; aq.ajax(url, JSONObject.class, this, "jsonCallback"); } public void jsonCallback(String url, JSONObject json, AjaxStatus status){ if(json != null){ //successful ajax call }else{ //ajax error } }
再举一个使用AQuery的XmlDom解析xml的例子,如果XML过大,使用XMLPullParser
public void xml_ajax(){ String url = "https://picasaweb.google.com/data/feed/base/featured?max-results=8"; aq.ajax(url, XmlDom.class, this, "picasaCb"); }
public void picasaCb(String url, XmlDom xml, AjaxStatus status){ // 返回一系列为entry的结点,并把其add进list List<XmlDom> entries = xml.tags("entry"); List<String> titles = new ArrayList<String>(); String imageUrl = null; for(XmlDom entry: entries){ titles.add(entry.text("title")); //循环把第一个结点为title的文本放进title imageUrl = entry.tag("content", "type", "image/jpeg").attr("src");//把第一个结点为content,属性为type,属性值为image/jpeg的src属性值赋予给imageUri } aq.id(R.id.image).image(imageUrl); }
4. 如果你想指定保存文件的位置,使用download方法
String url = "https://picasaweb.google.com/data/feed/base/featured?max-results=16"; File ext = Environment.getExternalStorageDirectory(); File target = new File(ext, "aquery/myfolder/photos.xml"); aq.progress(R.id.progress).download(url, target, new AjaxCallback<File>(){ public void callback(String url, File file, AjaxStatus status) { if(file != null){ showResult("File:" + file.length() + ":" + file, status); }else{ showResult("Failed", status); } } });
5. 自定义类型(文档例子是gson数据使用对象解析),详细见文档
6. 使用Http Post (Multiple)
private void aync_multipart(){ String url = "https://graph.facebook.com/me/photos"; Map<String, Object> params = new HashMap<String, Object>(); params.put("message", "Message"); //Simply put a byte[] to the params, AQuery will detect it and treat it as a multi-part post byte[] data = getImageData(); params.put("source", data); //Alternatively, put a File or InputStream instead of byte[] //File file = getImageFile(); //params.put("source", file); AQuery aq = new AQuery(getApplicationContext()); aq.auth(handle).ajax(url, params, JSONObject.class, this, "photoCb"); }
7. 使用ajax是很容易达到缓存的
String url = "http://www.google.com"; // 返回最近15分钟内的缓存副本,如果expire为-1,内容将会立即更新且缓存 long expire = 15 * 60 * 1000; aq.ajax(url, String.class, expire, new AjaxCallback<String>() { @Override public void callback(String url, String html, AjaxStatus status) { showResult(html); } });
8. 使缓存无效
public void callback(String url, JSONObject json, AjaxStatus status) { if(json != null){ if("1".equals(json.optString("status"))){ //do something }else{ // 不缓存 status.invalidate(); } } }
9. 同步调用:如果ajax调用是在新开的线程,sync方法能够阻塞线程,直到ajax调用完毕,如果sync方法用在主线程将会引起Exception
String url = "http://www.google.com/uds/GnewsSearch?q=Obama&v=1.0"; AjaxCallback<JSONObject> cb = new AjaxCallback<JSONObject>(); cb.url(url).type(JSONObject.class); aq.sync(cb); JSONObject jo = cb.getResult(); AjaxStatus status = cb.getStatus();
以上就是小小编跟大家就介绍的Android之使用Android-query框架开发实战(二),希望大家喜欢。
本文向大家介绍Android之使用Android-query框架开发实战(一),包括了Android之使用Android-query框架开发实战(一)的使用技巧和注意事项,需要的朋友参考一下 开发Android使用Android-query框架能够快速的,比传统开发android所要编写的代码要少得很多,容易阅读等优势。 下载文档及其例子和包的地址:http://code.google.com/
本文向大家介绍android开发框架afinal使用方法小结,包括了android开发框架afinal使用方法小结的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了android afinal使用方法,供大家参考,具体内容如下 1.注解功能 1)继承:FinalActivity ( 需要复制 afinal_0.5.1_bin.jar到lib下) 2)@ViewInject() 2.
本文向大家介绍Android开发之ViewSwitcher用法实例,包括了Android开发之ViewSwitcher用法实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android开发之ViewSwitcher用法。分享给大家供大家参考,具体如下: android.widget.ViewSwitcher是ViewAnimator的子类,用于在两个View之间切换,但每次只能显示一个
前置工作: 安装Solidity的开发框架Truffle,参见:Truffle框架安装 安装开发客户端,参见:Truffle客户端 1. 创建工程目录 在你想放工程的任何位置,创建一个文件夹truffleTest,来做为你的工程根目录。 $ mkdir -p /Users/admin/develop/blockchain_workspace/truffleTest 2. 初始化框架 进入到工程根
应用程序(Applications) Android会同一系列核心应用程序包一起发布,该应用程序包包括email客户端,SMS短消息程序,日历,地图,浏览器,联系人管理程序等。所有的应用程序都是使用JAVA语言编写的。通常开发人员就处在这一层。 应用程序框架(Application Frameworks) 提供应用程序开发的各种API进行快速开发,也即隐藏在每个应用后面的是一系列的服务和系统,大部
本文向大家介绍Android使用开源框架ANDROID-IMAGE-INDICATOR实现图片轮播部署,包括了Android使用开源框架ANDROID-IMAGE-INDICATOR实现图片轮播部署的使用技巧和注意事项,需要的朋友参考一下 之前的博文中有介绍关于图片轮播的实现方式,分别为(含超链接): 1、《Android中使用ViewFlipper实现屏幕切换》 2、《Android中使用Vie