为自定义 ListView 适配器创建拆分按钮
我想制作一个格式化视图的列表适配器,如下所示:
我希望能够触发不同的onClick 当用户单击图像时。我已经在 getView() 覆盖中定义了图像本身的 onClick,但是如何获取被单击的行的位置,以便我可以更新数据库中的记录来记录操作?
I'd like to make a list adapter that formats views like this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要代表适配器的 ListView。如果你已经把它存储在某个地方了,那就太好了;如果没有,您可以获取传递给 onClick() 的 View 并调用其 getParent() 方法两次(或多次,如果图像在单击的项目的视图中嵌套得更深)以获取 ListView。
从那里,对传递到 onClick() 的视图调用 ListView.getPositionForView()。这将为您提供一个 int 表示列表适配器中单击的项目的位置。从那里,您可以用它做任何您想做的事情。
例如:
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: