每个列表项有多个按钮的 ListActivity

发布于 2024-10-31 11:32:25 字数 294 浏览 0 评论 0原文

我想创建一个 ListActivity,其排列方式与通常的列表不同:它应该在每个列表行上包含多个可选项目(更准确地说是图像按钮)。

这些项目将使用游标从 SQLite 数据库加载。

我的问题是:

  1. 我不确定是否应该使用 ListActivity 来实现此功能。它看起来像一个列表,但具有自定义设计和行为,所以如果有人可以建议任何其他方式来实现它。
  2. 假设我可以使用 ListActivity,我不知道我该怎么做。到目前为止,所有示例均引用每行仅包含一项的列表。

谢谢 !

I would like to create an ListActivity that's arranged somehow different than a usual list: it should contain, on each list row, multiple selectable items (image buttons to be more precise).

The items will be loaded from a SQLite db using a cursor.

My questions are:

  1. I'm not sure I should use a ListActivity for this functionality. It looks like a List, but with custom design and behavior, so if anybody can suggest any other way to do it..
  2. Assuming I can use a ListActivity, what I can't figure out is how can I do it. All the examples so far refer to list with only one item per row.

Thank you !

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

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

发布评论

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

评论(1

紙鸢 2024-11-07 11:32:26

通过以下方式创建您的自定义适配器
扩展 BaseAdapter 类,所以你
但是你可以自定义列表视图
想。然后将图像按钮放入
每个列表项并提供
为每个图像设置OnClickListener
适配器类内的按钮:
查看以下帖子
编码帮助

自定义 ListView

干杯!

Create your custom adapter by
extending BaseAdapter class, So you
can custmize listview howerver you
want. Then palce your image buttons in
each listitem and provide
setOnClickListener for each image
buttons inside the adapter class:
Check out the following post for
coding help

: Custom ListView

Cheers!

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