禁用图库视图

发布于 2024-10-12 07:55:38 字数 336 浏览 1 评论 0原文

我在 Android 应用程序中禁用图库中的视图时遇到问题。当我单击视图时,视图似乎没有发生任何事情。这是我的 onItemClick(...) 方法:

 @Override
 public void onItemClick(AdapterView<?> adapterView, View view,
   int position, long id) {
        view.setEnabled(false);
    }

我也尝试过 setVisibility(...) 我缺少什么?

提前致谢。

I have a problem disabling views from my Gallery in my Android application. Nothing seems to happen with the View when I click it. Here is my onItemClick(...) method:

 @Override
 public void onItemClick(AdapterView<?> adapterView, View view,
   int position, long id) {
        view.setEnabled(false);
    }

I have also tried setVisibility(...)
What am I missing?

Thanks in advance.

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

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

发布评论

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

评论(1

庆幸我还是我 2024-10-19 07:55:38

如果您想将视图设置为不可见,请尝试这段小代码:

view.setVisibility(View.GONE);

这会将视图设置为不可见,我认为您无法再将其聚焦。但如果您在网格内工作,就会留下间隙。

If you want to set your view invisible, try this little piece of code:

view.setVisibility(View.GONE);

This sets the view invisible and i think you can't focus it anymore. But if you're working within a grid, there will be a gap left behind.

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