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

本文介绍了如何使用AsyncHttpClient进行异步HTTP请求,以及SmartImageView加速网络图片加载。在Android应用中,通过AsyncHttpClient发起请求,利用线程池处理并发,并通过SmartImageView实现图片的异步加载和缓存。同时,文章提供了一个简单的新闻客户端实现,包括JSON数据解析和ListView展示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在介绍案例之前,我们先看看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="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="65dp">
    <com.loopj.android.image.SmartImageView
        android:id="@+id/siv_icon"
        android:layout_width="80dp"
        android:layout_height="60dp"
        android:scaleType="centerCrop"
        android:src="@mipmap/ic_launcher"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"></com.loopj.android.image.SmartImageView>
    <TextView
        android:id="@+id/tv_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:layout_marginTop="10dp"
        android:layout_toRightOf="@id/siv_icon"
        android:ellipsize="end"
        android:maxLength="20"
        android:singleLine="true"
        android:text="我是标题"
        android:textColor="#000000"
        android:textSize="18sp" />

    <TextView
        android:id="@+id/tv_description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/tv_title"
        android:layout_marginLeft="5dp"
        android:layout_marginTop="5dp"
        android:layout_toRightOf="@id/siv_icon"
        android:ellipsize="end"
        android:maxLength="16"
        android:maxLines="1"
        android:text="我是描述"
        android:textColor="#99000000"
        android:textSize="14sp" />

    <TextView
        android:id="@+id/tv_type"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_marginBottom="5dp"
        android:layout_marginRight="10dp"
        android:text="评论"
        android:textColor="#99000000"
        android:textSize="12sp" />

</RelativeLayout>

由于使用到了ListView控件,因此需要为ListView的item创建一个布局。

这里写图片描述

如图:
NewsAdapter:

package cn.edu.bzu.anew.adapter;


import android.content.Context;
import android.support.annotation.NonNull;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;

import com.loopj.android.image.SmartImageView;

import java.util.List;

import cn.edu.bzu.anew.R;
import cn.edu.bzu.anew.entity.NewsInfo;


public class NewsAdapter extends ArrayAdapter<NewsInfo> {
    public NewsAdapter(Context context, List<NewsInfo> objects) {
        super(context, R.layout.news_item, objects);

    }

    @NonNull
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
//传递position,获取当前位置对应的newsinfo新闻信息
        View view = null;
        viewHolder viewHolder;
        if (convertView == null) {
//判断convertView中是否加载了布局,有没有缓存。为空说明没有缓存
            view = LayoutInflater.from(getContext()).inflate(R.layout.news_item, null);
            viewHolder = new viewHolder();
            viewHolder.siv = (SmartImageView) view.findViewById(R.id.siv_icon);
            viewHolder.tv_title = (TextView) view.findViewById(R.id.tv_title);
            viewHolder.tv_description = (TextView) view.findViewById(R.id.tv_description);
            viewHolder.tv_type = (TextView) view.findViewById(R.id.tv_type);
            view.setTag(viewHolder); //保存
        } else {
            view = convertView;
            viewHolder = (viewHolder) view.getTag();
        }
        viewHolder.siv.setImageUrl(newsinfo.getIcon());
        viewHolder.tv_title.setText(newsinfo.getTitle());
        //传递题目
        viewHolder.tv_description.setText(newsinfo.getDescription());
        viewHolder.tv_type.setText(newsinfo.getType() + "");
        return view;
    }

    class viewHolder {
    //添加类,封装需要查找的控件
        TextView tv_title;
        TextView tv_description;
        TextView tv_type;
        SmartImageView siv;

    }
}

NewsInfo:


package cn.edu.bzu.anew.entity;

public class NewsInfo {
    private String icon;
    private String title;
    private String description;
    private int type;
    private long comment;

    public NewsInfo(String icon, String title, String description, int type, long comment) {
        this.icon = icon;
        this.title = title;
        this.description = description;
        this.type = type;
        this.comment = comment;
    }

    public String getIcon() {
        return icon;
    }

    public void setIcon(String icon) {
        this.icon = icon;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public long getComment() {
        return comment;
    }

    public void setComment(long comment) {
        this.comment = comment;
    }
}

JsonParse:负责解析JSON数据

package cn.edu.bzu.anew.Tools;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

import java.lang.reflect.Type;
import java.util.List;

import cn.edu.bzu.anew.entity.NewsInfo;

public class JsonParse {
    public static List<NewsInfo> getNewsInfo(String json) {
        Gson gson = new Gson();
        Type listType = new TypeToken<List<NewsInfo>>() {
        }.getType();
        List<NewsInfo> newsInfos = gson.fromJson(json, listType);
        return newsInfos;
    }
}

MainActivity:


package cn.edu.bzu.anew;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.Toast;

import com.loopj.android.http.AsyncHttpClient;
import com.loopj.android.http.AsyncHttpResponseHandler;

import java.io.UnsupportedEncodingException;
import java.util.List;

import cn.edu.bzu.anew.Tools.JsonParse;
import cn.edu.bzu.anew.adapter.NewsAdapter;
import cn.edu.bzu.anew.entity.NewsInfo;


public class MainActivity extends AppCompatActivity {
    private ListView lvNews;
    private List<NewsInfo> newsInfos;
    private LinearLayout loading;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        lvNews = (ListView) findViewById(R.id.lv_news);
        loading = (LinearLayout) findViewById(R.id.loading);
        fillData();

    }

    private void fillData() {
        AsyncHttpClient client = new AsyncHttpClient();

        client.get("http://10.51.7.179:8080/NewsInfo.json", new AsyncHttpResponseHandler() {
            @Override
            public void onSuccess(int i, org.apache.http.Header[] headers, byte[] bytes) {
                try {
                    String json = new String(bytes, "utf-8");
                    newsInfos = JsonParse.getNewsInfo(json);
                    if (newsInfos == null) {
                        Toast.makeText(MainActivity.this, "解析失败", Toast.LENGTH_LONG).show();
                    } else {
                        loading.setVisibility(View.INVISIBLE);
                        lvNews.setAdapter(new NewsAdapter(MainActivity.this, newsInfos));
                    }
                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                }
            }

            @Override
            public void onFailure(int i, org.apache.http.Header[] headers, byte[] bytes, Throwable throwable) {

            }
        });


    }
}

注意JSON的地址改为自己电脑的地址。

访问权限:
在AndroidManifest.xml添加访问权限

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

配置Tomcat服务器
http://tomcat.apache.org下载并通过startup.bat启动服务器,
JSON文件和images文件夹, 放在webapps/Root文件夹下。
这里写图片描述

NewsInfo.json内容:

[
  {
    "icon": "http://10.51.7.179:8080/images/a.PNG",
    "title": "科技温暖世界",
    "content": "进入一个更有爱的领域",
    "type": "1",
    "comment": "69"
  },
  {
    "icon": "http://10.51.7.179:8080/images/b.PNG",
    "title": "《神武》",
    "content": "新美术资源盘点,视觉新体验",
    "type": "2",
    "comment": "35"
  },
  {
    "icon": "http://10.51.7.179:8080/images/c.PNG",
    "title": "南北车正式公布合并",
    "content": "南北车将于今日正式公布合并",
    "type": "3",
    "comment": "2"
  },
  {
    "icon": "http://10.51.7.179:8080/images/d.PNG",
    "title": "萌呆了!汪星人抱玩偶酣睡",
    "content": "汪星人抱玩偶酣睡,萌翻网友",
    "type": "1",
    "comment": "25"
  },
  {
    "icon": "http://10.51.7.179:8080/images/e.PNG",
    "title": "风力发电进校园",
    "content": "风力发电普进校园",
    "type": "2",
    "comment": "26"
  },
  {
    "icon": "http://10.51.7.179:8080/images/f.PNG",
    "title": "地球一小时",
    "content": "地球熄灯一小时",
    "type": "1",
    "comment": "23"
  },
  {
    "icon": "http://10.51.7.179:8080/images/g.PNG",
    "title": "最美公路",
    "content": "最美公路,难以想象",
    "type": "1",
    "comment": "23"
  }
]

为方便运行程序,可在浏览器输入http://10.51.7.179:8080/NewsInfo.json,查看是否解析。

SmartImageView的jar包得下载:
https://github.com/loopj/android-smart-image-view

AsyncHttpClient的jar包得下载:
http://github.com/loopj/android-async-http
http://hc.apache.org/download.cgi

最终程序运行效果:
这里写图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值