Android 自定义列表视图,每个元素中都有可点击的链接
在我的 Android 应用程序中,我使用自定义列表视图来显示我的记录。列表视图中的每个元素都有 7 个文本视图,用于显示数据库中的信息。
我想要做的是在列表视图中完全禁用整个元素选定的属性,因为每个元素本身中的一些文本视图是可单击的链接,我想使用设备轨迹球访问它们。在它选择整个列表视图元素之前,我无法使用设备轨迹球访问驻留在列表视图中每个元素中的那些链接并单击它们。
In my android application I am using a custom listview to display my records. each element in the list view have 7 textviews which displays information from database.
what I want to do is to disable the entire element selected property completely in the listview, because some textviews in each element itself are clickable links and i want access them using device trackball. Untill it select entire listview elements I cant access those links that resides in each element in the listview using device trackball and to click them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以设置
listview的属性。
要处理链接的点击,您应该在 Adapter 的 getView() 方法中处理链接的 onClickListener() 。
You can set the
property of listview.
To handle the clicks of the links, you should handle the onClickListener() of the link from within the getView() method of Adapter.
在 ListAdapter 中重写两个方法:
In your ListAdapter override the two methods: