Android向列表中添加不同的图标

发布于 2024-10-27 04:30:38 字数 683 浏览 3 评论 0原文

我从两个不同的 URL(例如 twitter 和 Facebook)获取 RSS 提要。我想将这两个添加到同一个列表中并添加它们各自的图标。我已经尝试了很多事情。

下面的代码用于解析

Element _titleE = (Element) entry.getElementsByTagName("description").item(0);

                        String _title = _titleE.getFirstChild().getNodeValue();
                          _linkE.getFirstChild().getNodeValue();

                        RssItem rssItem = new RssItem(_title);
                        rssItems.add(rssItem);

以下是我将其添加到数组适配器以进行显示的方法。 R.id.Label 中的图像已设置(它存在于 XML 中)。

aa = new ArrayAdapter<RssItem>(this, R.layout.list_item,R.id.label, rssItems);
            rssListView.setAdapter(aa);

I am getting RSS feeds from two different URLs (Say twitter and Facebook). I want to add these two to the same list and add their respective icons. I have tried many things.

The below code is for parsing

Element _titleE = (Element) entry.getElementsByTagName("description").item(0);

                        String _title = _titleE.getFirstChild().getNodeValue();
                          _linkE.getFirstChild().getNodeValue();

                        RssItem rssItem = new RssItem(_title);
                        rssItems.add(rssItem);

Here is how I'm adding it to the array adapter to display. The image which is there in R.id.Label gets set (it is present in XML).

aa = new ArrayAdapter<RssItem>(this, R.layout.list_item,R.id.label, rssItems);
            rssListView.setAdapter(aa);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海少女心 2024-11-03 04:30:38

几天前我遇到了同样的问题并从本教程中获得了帮助:
http://www.anddev.org/android_filebrowser__v20-t101.html
他们基本上实现了一个自定义适配器,该适配器创建列表项并设置其图标。

I had the same issue some days before and got help from this tutorial:
http://www.anddev.org/android_filebrowser__v20-t101.html
They are basically implementing a custom adapter which creates the list items and sets their icons.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文