网络编程之新闻案例

我们要用到两个开源的框架,SmartImageView,AsyncHttpClient.
我们要做到这个效果。
这里写图片描述
图片是用SmartImageView。

1.建一个新闻的实体类。

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;
    }

2主布局文件

<?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>

3.子布局

<?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>

4.自定义一个adapter

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) {
        NewsInfo newsinfo= getItem(position);//传递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;

    }
}

5.MainActivity中

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.9.254: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) {

            }
        } );
    }
}

5.这里用到了json数据解析。

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;
    }
}

你在运行前,需将你的json数据和图片放到你Tomcat的webapp的ROOT文件夹下。

新闻系统 acess+vs <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Src="custom/bottom.ascx" TagName="bottom" TagPrefix="uc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>新闻主页</title> </head> <body style="background-image:url([~/image/bg1.jpg]); background-color:Silver" > <form id="form1" runat="server"> <div align=center style="position:absolute; left:100px;right:100px; width:800px; top: 0px; height: 500px;"> <asp:Image ID="Image1" runat="server" Width="100%" Height="100%" ImageUrl="~/image/1.jpg" ForeColor="#E0E0E0"/> <div align=center style="position:absolute;width:800px;top:0px; left:0px; height:100px;"> <br /> <br /> <asp:Label ID="Label3" runat="server" BorderStyle="None" Font-Bold="True" Font-Names="宋体" Font-Size="45px" Font-Strikeout="False" Font-Underline="True" Text="欢迎进入浏览新闻" ForeColor="Fuchsia"></asp:Label></div> <div align=right style="position:absolute;width:800px;top:100px; left:0px;">  <asp:Label ID="Label2" runat="server" Text="关键字:" ForeColor="Yellow"></asp:Label> <asp:TextBox ID="TextBox1" runat="server" Width="127px"></asp:TextBox>   <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="搜索" />            </div> <div align=left style="position:absolute; left:0px;width:100px; height: 163px;top:130px"> <asp:Label ID="Label4" runat="server" Text="热度关键词:"></asp:Label> <asp:DataList ID="DataList1" runat="server" DataKeyField="KeyId" HorizontalAlign="Left" OnItemCommand="DataList1_ItemCommand" Width="100px" Font-Size="Small" > <ItemTemplate> <asp:LinkButton ID="LinkButton1" runat="server" Text='<%# Eval("KeyName") %>' CommandName="select" CommandArgument='<%# Eval("KeyId") %>'></asp:LinkButton>     <asp:Label ID="Label5" runat="server" Text='<%# Eval("KeyHeat") %>'></asp:Label> </ItemTemplate> <ItemStyle BorderStyle="None" HorizontalAlign="Center" /> </asp:DataList> </div> <div align=center style="position:absolute; left:100px;width:600px; top: 130px;"> <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" DataKeyNames="NewsId" Width="600px" OnPageIndexChanging="GridView1_PageIndexChanging" > <Columns> <asp:BoundField DataField="NewsId" HeaderText="ID" Visible="False" /> <asp:HyperLinkField DataNavigateUrlFields="NewsId" DataNavigateUrlFormatString="ShowOneNews.aspx?NewsId={0}" DataTextField="NewsTitle" HeaderText="新闻标题" > <ItemStyle ForeColor="Lime" /> </asp:HyperLinkField> <asp:BoundField DataField="NewsType" HeaderText="新闻类别" > <ItemStyle ForeColor="Cyan" /> </asp:BoundField> <asp:BoundField DataField="NewsAddDate" HeaderText="发布日期" > <ItemStyle ForeColor="Yellow" /> </asp:BoundField> <asp:HyperLinkField DataNavigateUrlFields="NewsId" DataNavigateUrlFormatString="EditNews.aspx?NewsId={0}" HeaderText="编辑" Target="_top" Text="编辑" Visible="False" /> <asp:CommandField ShowDeleteButton="True" Visible="False" /> </Columns> <RowStyle HorizontalAlign="Center" VerticalAlign="Middle" /> <EditRowStyle HorizontalAlign="Center" VerticalAlign="Middle" /> </asp:GridView> <asp:Label ID="Label1" runat="server" Text="Label" Width="49px"></asp:Label> </div> <div align=left style="position:absolute; right:0px;width:100px; height: 163px;top:130px"> <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" Width="98px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"> </asp:DropDownList></div> <div align=left style="position:absolute;width:700px; bottom:0px; left: 50px;"> <uc1:bottom ID="Bottom1" runat="server" /> </div> </div> </form> </body> </html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值