突出显示选择器不会出现在链接的 ListViewItem 上
当我在 ListViewItem 中使用 Linkify 时,突出显示选择器似乎会关闭,并且只有文本会突出显示。
Linkify.addLinks(bodyTextView, Linkify.WEB_URLS);
单击 ListViewItem 时如何恢复突出显示选择器?
When I use Linkify in my ListViewItem the highlight selector seems to go off and only the text gets highlighted.
Linkify.addLinks(bodyTextView, Linkify.WEB_URLS);
How can I get the highlight selector back when I click on a ListViewItem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦您的 ListView 项目内有其他元素(在本例中为链接文本),您就失去了关注实际列表项的能力。据我所知。一旦您在其中添加按钮或复选框,就会发生同样的事情。
请参阅 Romain Guy 就类似主题发布的此帖子。
As soon as you have other elements that focus inside your ListView items, in this case, the linkified text, then you loose the ability to focus on the actual list item. As far as I know. Same thing happens once you add buttons or checkboxes inside.
See this message post by Romain Guy on a similar topic.