网络编程小案例之简易新闻客户端

在介绍案例之前,我们先看看AsyncHttpClient和SmartImageView的使用。
AsyncHttpClient
AsyncHttpClient是对HttpClient的再次包装。AsyncHttpClient的特点有,发送异步HTTP请求、HTTP 请求发生在UI线程之外、内部采用了线程池来处理并发请求,而且它使用起来比HttpClient更加简便。
特性主要有一下几个:
采用异步http请求,并通过匿名内部类处理回调结果、http请求独立在UI主线程之外、采用线程池来处理并发请求、采用RequestParams类创建GET/POST参数、不需要第三方包即可支持Multipart file文件上传、大小只有25kb、自动为各种移动电话处理连接断开时请求重连、超快的自动gzip响应解码支持、使用BinaryHttpResponseHandler类下载二进制文件(如图片)、 使用JsonHttpResponseHandler类可以自动将响应结果解析为json格式、持久化cookie存储,可以将cookie保存到你的应用程序的SharedPreferences中。
使用方法:
到官网http://loopj.com/android-async-http/下载最新的android-async-http-1.4.9.jar,然后将此jar包添加进Android应用程序 libs文件夹。
通过import com.loopj.android.http.*;引入相关类。
创建异步请求:

AsyncHttpClient client = new AsyncHttpClient();  
client.get("http://www.google.com", new AsyncHttpResponseHandler() {  
    @Override  
    public void onSuccess(String response) {  
        System.out.println(response);  
    }  
});  

SmartImageView:
源项目SmartImageView 是一个Android替代标准ImageView,开SmartImageView的出现主要是为了加速从网络上加载图片,它继承自ImageView类,支持 根据URL地址加载图片、支持异步加载图片、支持图片缓存等。
特性主要有以下几个:
作为ImageView的替代、可以从一个URL装载图像、可以从手机的联系人通讯录加载图片、异步加载图片,加载在UI线程、图像缓存在内存和磁盘以使其加载更快、SmartImage类很容易从其他来源可扩展加载。
基本使用方法:
加一个SmartImageView到你Activity的xml布局中:

<com.loopj.android.image.SmartImageView 
           android:id="@+id/my_image" >
</com.loopj.android.image.SmartImageView>

得到一个参考布局的SmartImageView:

SmartImageView myimage = (SmartImageView) this.findViewById(R.id.my_image);  

从一个URL(网络路径)中加载图片:

myimage.setImageUrl("http://www.xxxxxx.com/xxxximage.jpg");  

下面我们家开始实验之路吧!!!!
首先我们设置两个布局文件:
activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="cn.edu.bzu.anew.MainActivity">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:id="@+id/loading"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:orientation="vertical"
            android:visibility="invisible">
            <ProgressBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="正在加载信息..." />
        </LinearLayout>
        <ListView
            android:id="@+id/lv_news"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>
</RelativeLayout>

这个界面是新闻客户端的主界面,主要包含了提示用户数据正在加载中的ProgressBar、TextView以及用于展示新闻信息的ListView。
news_item.xml:

<?xml version="1.0" encoding=
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值