Android向列表中添加不同的图标
我从两个不同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几天前我遇到了同样的问题并从本教程中获得了帮助:
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.