3
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.offers);
    ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
    String xml = XMLfunctions.getX## Heading ##ML();
    Document doc = XMLfunctions.XMLfromString(xml);
    int numResults = XMLfunctions.numResults(doc);
    if((numResults <= 0))
    {
        Toast.makeText(OffersActivity.this, "Geen resultaten gevonden", Toast.LENGTH_LONG).show();  
        finish();
    }
    ImageView newImg = (ImageView) findViewById(R.id.thumbimage);
    NodeList nodes = doc.getElementsByTagName("result");
    for (int i = 0; i < nodes.getLength(); i++)
    {
        HashMap<String, String> map = new HashMap<String, String>();
        Element e = (Element)nodes.item(i);
        map.put("id", XMLfunctions.getValue(e, "id"));
        map.put("name", "" + XMLfunctions.getValue(e, "name"));
        map.put("Score", "" + XMLfunctions.getValue(e, "score"));
        map.put("thumbnail", "" + XMLfunctions.getValue(e, "thumbimg"));
        mylist.add(map);
    }
    ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.listitems, 
            new String[] { "name", "Score",  "thumbnail"}, 
            new int[] { R.id.item_title, R.id.item_subtitle, R.id.thumbimage });
    setListAdapter(adapter);
}

我有要显示的图像的地址

map.put("thumbnail", "" + XMLfunctions.getValue(e, "thumbimg"));

我也得到了它们。实际上它们来自实时xml。我想把它们放在图像视图中。请帮忙!

谢谢

4

2 回答 2

2

您需要在后台下载图像,然后将它们设置在正确的 ImageViews 中。

默认情况下,适配器不会为您提供所有功能,因此您必须自己进行一些额外的编码。

看看这个 StackOverflow 答案:在 ListView 中延迟加载图像,你就会明白我的意思了!

于 2012-04-16T09:50:47.277 回答
1

有一个名为 LazyListview 的列表视图。我认为这肯定会对您有所帮助。此惰性列表将帮助您在后台下载图像。当您打开列表活动时,您将看到下载图像后加载的默认图像将一一设置,从而制作出很棒的用户界面。

我认为这段代码会对你有很大帮助.... :-)

于 2012-04-16T11:32:13.103 回答