禁用 Android 列表视图

发布于 2024-10-29 01:38:09 字数 72 浏览 1 评论 0原文

我有一个带有列表视图的视图和几个其他视图,包括一个按钮和一些编辑文本。我希望列表视图可滚动,但按下按钮后不可单击。 有什么建议吗?

I have a view with a listview and several other views including a button and a few edittexts. I want the listview to be scrollable but not clickable after i press the button.
Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

篱下浅笙歌 2024-11-05 01:38:09

我会添加一个字段,例如:

private boolean clicked = false;

然后我会进入 onClick 方法并添加类似的内容,

    if(!clicked){
//Do Stuff on the click
    clicked = true;
}
else if(clicked){
//do nothing
}

然后要再次接受点击,您首先必须再次将 clicked 设置为 false,然后继续接受点击。

I would add a field, something like:

private boolean clicked = false;

I would then go into the onClick method and add something like

    if(!clicked){
//Do Stuff on the click
    clicked = true;
}
else if(clicked){
//do nothing
}

then to accept a click again you would first have to set clicked to false again, and then continue to accept clicks.

我三岁 2024-11-05 01:38:09

您需要通过将 setOnClickListener 调用为 null 来禁用列表视图的点击侦听器,@Aaron Decker 的解决方案也很好:-)

You need disable the clicklisteners for the listview by calling setOnClickListener to null , @Aaron Decker's solution is good too :-)

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