Android 将CheckedTextView的复选框替换为按钮
我想知道是否可以用按钮替换 CheckedTextView 的 CheckMark,这样我就可以单击按钮并删除该项目。如果是这样,推荐的方法是什么?如果没有,我可以采取哪些其他方法来达到相同的结果?
I was wondering if it's possible at all to replace the CheckMark of the CheckedTextView with a button, so I can click on the button and delete the item. If so, what is the recommended approach to doing this? If not, what other approaches can I take to achieve the same result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试从项目中创建常规列表视图,然后为要实现的每个列表项创建特定的 listitem.xml 布局。然后,此布局可以包含删除按钮或您想要的任何其他小部件。在代码中,将 onClick 侦听器附加到此按钮以实现神奇效果。
You could try making a regular listview out of your items and then create a specific listitem.xml layout for each list item to implement. This layout could then hold a delete button or any other widget you want. In code attach an onClick listener to this button to do the magic.