中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android應用中模擬一個新聞客戶端

發布時間:2020-12-05 17:28:17 來源:億速云 閱讀:171 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關怎么在Android應用中模擬一個新聞客戶端,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

首先我們創建一個JsonParse類用來解析json文件:

package cn.edu.bzu.myapplication.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.myapplication.entity.NewsInfo;

/**
 * Created by Becauseshy on 2017/5/18.
 */

public class JsonParse {
 public static List<NewsInfo> getNewInfo(String json){
  Gson gson=new Gson();
  Type listType=new TypeToken<List<NewsInfo>>(){

  }.getType();
  List<NewsInfo> newsInfos=gson.fromJson(json,listType);


  return newsInfos;
 }
}

創建json文件的實體類:

package cn.edu.bzu.myapplication.entity;

/**
 * Created by Becauseshy on 2017/5/17.
 */

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

 public String getIconPath() {
  return iconPath;
 }

 public void setIconPath(String iconPath) {
  this.iconPath = iconPath;
 }

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

activity_main.xml:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity"
 android:orientation="vertical">

 <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>
</LinearLayout>

item的布局文件:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<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>

適配器代碼:

package cn.edu.bzu.myapplication.adapter;

/**
 * Created by Becauseshy on 2017/5/17.
 */
import android.content.Context;
import android.graphics.Color;
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.myapplication.R;
import cn.edu.bzu.myapplication.entity.NewsInfo;


public class NewAdapter extends ArrayAdapter<NewsInfo>{
private int resourceID;
 public NewAdapter(Context context, int resource, List<NewsInfo> objects) {
  super(context, resource, objects);
  resourceID=resource;
 }

 @Override
 public View getView(int position, View convertView, ViewGroup parent) {
  NewsInfo fruit=getItem(position);
  View view;
  ViewHolder viewHolder;
  if(convertView==null){
    view=LayoutInflater.from(getContext()).inflate(resourceID,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(fruit.getIconPath(),R.drawable.a,R.drawable.ic_launcher);
  viewHolder.tv_title.setText(fruit.getTitle());
  viewHolder.tv_description.setText(fruit.getDescription());
  int type=fruit.getType();
  switch (type){

   case 1:
    viewHolder.tv_type.setText("評論:"+fruit.getComment());
    viewHolder.tv_type.setTextColor(Color.BLUE);
    break;
   case 2:
    viewHolder.tv_type.setText("專題");
    viewHolder.tv_type.setTextColor(Color.BLACK);
    break;
   case 3:
    viewHolder.tv_type.setText("LIVE");
    viewHolder.tv_type.setTextColor(Color.RED);
    break;
  }

  return view;

 }
 class ViewHolder{
  SmartImageView siv;
  TextView tv_title;
  TextView tv_description;
  TextView tv_type;
 }
}

MainActivity實現代碼:

package cn.edu.bzu.myapplication;

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.ArrayList;
import java.util.List;

import cn.edu.bzu.myapplication.Tools.JsonParse;
import cn.edu.bzu.myapplication.adapter.NewAdapter;
import cn.edu.bzu.myapplication.entity.NewsInfo;
import cn.edu.bzu.myapplication.model.Fruit;

public class MainActivity extends AppCompatActivity {
 private ListView Iv_news;
 private NewAdapter newAdapter;
 private List<NewsInfo> newInfos;
 private LinearLayout loading;
 private JsonParse jsonParse;


 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  Iv_news= (ListView) findViewById(R.id.lv_news);
  newAdapter =new NewAdapter(this,R.layout.news_item,newInfos);
  loading= (LinearLayout) findViewById(R.id.loading);
  prepareData();


 }

 private void prepareData() {
  //fruitList=new ArrayList<>();
  //Fruit apple=new Fruit("Apple",R.drawable.apple_pic);
  // fruitList.add(apple);
  AsyncHttpClient asyncHttpClient=new AsyncHttpClient();
  asyncHttpClient.get(getString(R.string.serverurl), new AsyncHttpResponseHandler() {

   @Override
   public void onSuccess(int i, cz.msebera.android.httpclient.Header[] headers, byte[] bytes) {
    try {
     String json=new String(bytes,"utf-8");
     newInfos=jsonParse.getNewInfo(json);
     if(newInfos==null){
      Toast.makeText(MainActivity.this,"解析失敗",Toast.LENGTH_SHORT).show();
     }
     else {
      loading.setVisibility(View.INVISIBLE);
      Iv_news.setAdapter(newAdapter);


     }
    } catch (UnsupportedEncodingException e) {
     e.printStackTrace();
    }


   }

   @Override
   public void onFailure(int i, cz.msebera.android.httpclient.Header[] headers, byte[] bytes, Throwable throwable) {
    Toast.makeText(MainActivity.this,"請求失敗",Toast.LENGTH_SHORT).show();

   }
  });


 }

}

在values文件加下的String.xml文件中添加:

<string name="serverurl">http://172.16.26.58:8080/newInfo.xml</string>

最后一定不要忘了添加網絡訪問權限

上述就是小編為大家分享的怎么在Android應用中模擬一個新聞客戶端了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江城| 如皋市| 鄱阳县| 建平县| 太保市| 灵武市| 德庆县| 陆川县| 正蓝旗| 南岸区| 九江县| 华坪县| 疏勒县| 吉林省| 钟祥市| 贵定县| 龙胜| 甘孜| 兴海县| 慈利县| 东阳市| 肇州县| 苏尼特左旗| 景东| 绵阳市| 荥经县| 保靖县| 边坝县| 晴隆县| 汨罗市| 和林格尔县| 永定县| 山西省| 宁远县| 乌兰浩特市| 临夏县| 临沭县| 察哈| 南宁市| 子洲县| 开鲁县|