1

如何在表格布局中显示这个?我想显示一个像这样的 json 文件: 图片1

在我下面的代码中,网络连接正在工作,它解析图像名称和 url 并显示它。我只想知道如何在我的 json 文件中添加一些新属性,例如项目数量。

并访问我的 json 解析代码并以与此图像相同的布局显示。

这是我的 JSON 文件

{ "worldpopulation":
    [
        {
            "rank":1,
            "name": "Angelina",
            "url": "http://www.bounty4u.com/android/images/angie.jpg"
        },
        {   
            "rank":2,
            "name": "Ashton ",
            "url": "http://www.bounty4u.com/android/images/ashton.jpg"
        },
        {  
            "rank":3,
            "name": "Jackman",
            "url": "http://www.bounty4u.com/android/images/hugh.jpg"
        }
    ]
}

这是我的代码:

public class fifthscreen extends Activity {

HorizontalListView listview;
CategoryListAdapter3 cla;
String DescriptionAPI;

static ArrayList<Long> Category_ID = new ArrayList<Long>();
static ArrayList<String> Category_name = new ArrayList<String>();
static ArrayList<String> Category_image = new ArrayList<String>();


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.fifthscreen);


    listview = (HorizontalListView) this.findViewById(R.id.listview2);

      cla = new CategoryListAdapter3(fifthscreen.this);


      DescriptionAPI = Utils.DescriptionAPI;

         //     clearData();
            try {

                HttpClient client = new DefaultHttpClient();

  HttpConnectionParams.setConnectionTimeout(client.getParams(), 15000);
                HttpConnectionParams.setSoTimeout(client.getParams(), 
   15000);
                HttpUriRequest request = new HttpGet(DescriptionAPI);
                HttpResponse response = client.execute(request);
                InputStream atomInputStream = 
       response.getEntity().getContent();
                BufferedReader in = new BufferedReader(new 
       InputStreamReader(atomInputStream));

                String line;
                String str = "";
                while ((line = in.readLine()) != null){
                    str += line;
                }


                    JSONObject json = new JSONObject(str);
                    JSONArray data =  
       json.getJSONArray("worldpopulation");



                   for (int i = 0; i < data.length(); i++) {
                        JSONObject object = data.getJSONObject(i); 

                    //    JSONObject category = 
               object.getJSONObject("Category");


                            Category_ID.add(Long.parseLong(object.getString("rank")));
                        Category_name.add(object.getString("name"));
                        Category_image.add(object.getString("url"));

                        Log.d("Category name", Category_name.get(i));
                        listview.setAdapter(cla);


                    }


            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
            //  IOConnect = 1;
                e.printStackTrace();
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }   


  public class CategoryListAdapter3 extends BaseAdapter {

private Activity activity;
private ImageLoader imageLoader;

public CategoryListAdapter3(Activity act) {
    this.activity = act;
    imageLoader = new ImageLoader(act);
}

public int getCount() {
    // TODO Auto-generated method stub
    return fifthscreen.Category_ID.size();
}

public Object getItem(int position) {
    // TODO Auto-generated method stub
    return position;
}

public long getItemId(int position) {
    // TODO Auto-generated method stub
    return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    ViewHolder holder;

    if(convertView == null){
        LayoutInflater inflater = (LayoutInflater) activity
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(R.layout.viewitem2, null);
        holder = new ViewHolder();

        convertView.setTag(holder);
    }else{
        holder = (ViewHolder) convertView.getTag();
    }


    holder.txtText = (TextView) convertView.findViewById(R.id.title2);
    holder.imgThumb = (ImageView) convertView.findViewById(R.id.image2);

    holder.txtText.setText(fifthscreen.Category_name.get(position));
//  
 imageLoader.DisplayImage(Utils.AdminPageURL+CategoryList.Category_image.get(position),
        imageLoader.DisplayImage(fifthscreen.Category_image.get(position),
            activity, holder.imgThumb);

    return convertView;
}


 }
4

2 回答 2

0

Why you going to use table layout. Same features available as a listview and it is very easy to use so I suggest you to use this features. It provide multiple column facility as tablelayout.

Please see this link

于 2013-08-01T08:05:09.623 回答
0

使用谷歌 gson

Gson 是一个 Java 库,可用于将 Java 对象转换为其 JSON 表示形式。它还可用于将 JSON 字符串转换为等效的 Java 对象。Gson 可以处理任意 Java 对象,包括您没有源代码的预先存在的对象。

它易于在 php 中使用 json_encode()

请参阅下面的链接

于 2013-08-01T08:28:17.453 回答