为自定义 ListView 适配器创建拆分按钮

发布于 2024-09-08 01:38:27 字数 206 浏览 2 评论 0原文

我想制作一个格式化视图的列表适配器,如下所示:

List Entry

我希望能够触发不同的onClick 当用户单击图像时。我已经在 getView() 覆盖中定义了图像本身的 onClick,但是如何获取被单击的行的位置,以便我可以更新数据库中的记录来记录操作?

I'd like to make a list adapter that formats views like this:

List Entry

I want to be able to fire a different onClick when the user clicks the image. I have defined the onClick on the image itself in the getView() override, but how do I then get the position of the line that was clicked so I can update the record in the database to record the action?

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

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

发布评论

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

评论(1

罪歌 2024-09-15 01:38:27

首先,您需要代表适配器的 ListView。如果你已经把它存储在某个地方了,那就太好了;如果没有,您可以获取传递给 onClick() 的 View 并调用其 getParent() 方法两次(或多次,如果图像在单击的项目的视图中嵌套得更深)以获取 ListView。

从那里,对传递到 onClick() 的视图调用 ListView.getPositionForView()。这将为您提供一个 int 表示列表适配器中单击的项目的位置。从那里,您可以用它做任何您想做的事情。

例如:

public void onClick(View v){
    ListView lv = (ListView)(v.getParent().getParent()); // you may need more getParent()s and/or extra casting
    int position = lv.getPositionForView(v);
    /* Do whatever database stuff
     * You want to do
    */
}

First, you need the ListView which represents the adapter. If you store this somewhere already, great; if not, you can take the View which is passed to onClick() and call its getParent() method twice (or more, if the image is nested deeper within the clicked item's view) to get the ListView.

From there, call ListView.getPositionForView() on the View passed into onClick(). This will give you an int representing the position of the clicked item within the list adapter. From there, you can do whatever you want with it.

For example:

public void onClick(View v){
    ListView lv = (ListView)(v.getParent().getParent()); // you may need more getParent()s and/or extra casting
    int position = lv.getPositionForView(v);
    /* Do whatever database stuff
     * You want to do
    */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文