Android,布局clicklistener和子视图点击问题

发布于 2024-10-25 12:22:42 字数 316 浏览 1 评论 0原文

我有一个相对布局,我向其中添加按钮并将其 onCLickListener 设置为我处理其点击的当前活动。

在特定情况下,我还需要设置RelativeLayout onClickListener,但是一旦完成所需的布局单击,我需要允许再次单击按钮。 (即单击布局)

如果我将布局的单击侦听器设置为 null,我将无法再单击布局或其子视图的按钮。

我做错了什么?

编辑:我似乎已经通过设置修复了它;

relativeLayout.setClickable(false);

I have a RelativeLayout to which I add buttons and set their onCLickListener to the current Activity where I handle their clicks.

Under a particular circumstance I need to set the RelativeLayout onClickListener also, but then once finished with the required clicking on the layout, I need to allow clicking on the buttons again. (i.e. clicking throug hthe layout)

If I set the layout's click listener to null I can no longer click either the layout or the buttons that are it's child views.

What am I doing wrong?

EDIT: I seem to have fixed it by setting;

relativeLayout.setClickable(false);

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

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

发布评论

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

评论(1

春风十里 2024-11-01 12:22:42

你尝试过吗:

relativeLayout.setOnClickListener(null);
relativeLayout.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);

Have you tried:

relativeLayout.setOnClickListener(null);
relativeLayout.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);

?

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