Android 自定义列表视图,每个元素中都有可点击的链接

发布于 2024-11-29 12:14:31 字数 200 浏览 1 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(2

我的黑色迷你裙 2024-12-06 12:14:31

您可以设置

android:clickable=false

listview的属性。
要处理链接的点击,您应该在 Adapter 的 getView() 方法中处理链接的 onClickListener() 。

You can set the

android:clickable=false

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.

千寻… 2024-12-06 12:14:31

在 ListAdapter 中重写两个方法:

@Override
public boolean areAllItemsEnabled() {
    return false;
}

@Override
public boolean isEnabled(int position) {
    return false;
}

In your ListAdapter override the two methods:

@Override
public boolean areAllItemsEnabled() {
    return false;
}

@Override
public boolean isEnabled(int position) {
    return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文