在Android列表视图中列出图像和文本

时间:2012-04-06 06:37:13

标签: android

在我的RSS新闻阅读器应用程序中,我目前使用以下方法在列表视图中列出RSS标题。我使用此方法http://droidapp.co.uk/?p=166将RSS数据存储在数组中。我想列出RSS提要图像它的标题。我从RSS feed获取图像URL。任何人都可以帮助找到解决方案吗?

ListView lv1;

    lv1 = (ListView)findViewById(R.id.listView1);

    lv1.setAdapter(new ArrayAdapter<String>(this,R.layout.mylist , array.PodcastTitle));

3 个答案:

答案 0 :(得分:1)

查看此自定义或动态Listview example

还会看到如何加载image from URL

enter image description here

答案 1 :(得分:0)

使用https://github.com/thest1/LazyList

中给出的示例

答案 2 :(得分:0)

首先,您必须通过扩展BaseAdapter来创建自定义ListView适配器,其次您需要在位图中获取图像。

此处:http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html您有一个优化的ListAdapter

在这里:Dynamically populate Android ImageView with outside resources你有一个如何下载图像并将其放入Bitmap的线索(之后你可以将它放到你的ImageView上)