为什么我的列表视图中没有显示数据?

时间:2012-05-23 06:18:08

标签: java android eclipse json listview

它连接并从json数组中提取数据。它添加了两个listview项但没有显示任何文本?

JSON数组 {“锦标赛”:[{“标题”:“我的头衔”,“联系方式”:“我的联系人”,“描述”:“我的描述”,“城市”:“我的城市”,“州”:“堪萨斯” ,“类别”:“轮盘”},{“标题”:“我的标题”,“联系方式”:“我的联系人”,“描述”:“我的描述”,“城市”:“我的城市”,“国家” :“康涅狄格州”,“类别”:“三张牌扑克”}}}

我的一些代码在java ...

    JSONObject json = JSONfunctions.getJSONfromURL("http://kleinefrosch.com/retrieve.php");

    try{

        JSONArray  tourneys = json.getJSONArray("tournaments");

        for(int i=0;i<tourneys.length();i++){                       
            HashMap<String, String> map = new HashMap<String, String>();    
            JSONObject e = tourneys.getJSONObject(i);

            map.put("id",  String.valueOf(i));
            map.put("Title:" , e.getString("Title"));
            map.put("Contact:" , e.getString("Contact"));
            map.put("Description:" , e.getString("Description"));
            map.put("City:" , e.getString("City"));
            map.put("State:" , e.getString("State"));
            map.put("Country:" , e.getString("Country"));
            map.put("Category:" , e.getString("Category"));

            mylist.add(map);            
        }       
    }catch(JSONException e)        {
         Log.e("log_tag", "Error parsing data "+e.toString());
    }

    ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.main, 
                    new String[] { "Title","Contact","Description","City","State","Country","Category" }, 
                    new int[] { R.id.item_title, R.id.item_subtitle });

    setListAdapter(adapter);

    final ListView lv = getListView();
    lv.setTextFilterEnabled(true);  
    lv.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {              
            @SuppressWarnings("unchecked")
            HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);                   
            Toast.makeText(JsonActivity.this, "ID '" + o.get("id") + "' was clicked.", Toast.LENGTH_SHORT).show(); 

        }
    });
}

}

3 个答案:

答案 0 :(得分:1)

假设JSON字符串解析没有任何异常,我认为你应该使用这种结构:

setListAdapter(new ArrayAdapter<String>(Context context, int resource, int textViewResourceId, List<T> objects);

有关转到developers guide

的详细信息

答案 1 :(得分:1)

尝试删除map.put("id", String.valueOf(i));

希望它能够运行。

<强> EDITED

你的错误就在这里

map.put("Title:" , e.getString("Title")); 

应该是

map.put("Title" , e.getString("Title"));

因为它是将在SimpleAdapter中匹配的Key。 像这样从每个字符串值中删除:

因此,请确保两个键完全匹配。

答案 2 :(得分:0)

发布您的Xml代码,您使用的是任何自定义列表视图吗?如果是意味着为Textview添加一些深色。