如何附加一些“元数据” Android 列表视图项目?

发布于 2024-11-02 17:50:03 字数 382 浏览 0 评论 0原文

class Venue {
  private int id;
  private String name;
}

我用类似的内容填充 ListView

List<String> venueNames = data.getVenueNames();
setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, venueNames));

,因此在用户选择特定列表项后,我想使用场地 id 进行 SQLite 查询,但在创建场地名称时此信息会丢失。你们怎么解决这个问题?

编辑:我应该提到的是,不能保证场地名称是唯一的。

class Venue {
  private int id;
  private String name;
}

I populate the ListView with something like

List<String> venueNames = data.getVenueNames();
setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, venueNames));

So after the user selects a particular list item, I'd like to do a SQLite query with the venue id, but this information is lost when creating the venue names. How do you guys solve this?

EDIT: I should mention that it isn't guaranteed that venue name is unique.

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

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

发布评论

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

评论(1

╰ゝ天使的微笑 2024-11-09 17:50:03

你的问题就在这里:

List<String> venueNames = data.getVenueNames();

不要这样做。您是“丢失”信息的人。如果你不想失去它,就不要失去它。

最简单的事情是创建一个 ArrayAdapter,并让 VenuetoString() 返回 name 。然后,在 ArrayAdapter 上调用 getItem() 将返回一个 Venue

Your problem is here:

List<String> venueNames = data.getVenueNames();

Don't do that. You are the one "losing" the information. If you don't want to lose it, don't lose it.

The simplest thing is to create an ArrayAdapter<Venue>, and have Venue's toString() return name. Then, calling getItem() on your ArrayAdapter<Venue> will return a Venue.

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