为每个用户禁用按钮,仅管理员可单击按钮

发布于 2025-01-11 08:54:52 字数 287 浏览 0 评论 0原文

我有一个重置按钮,只有管理员可以单击,对于用户来说,它将始终被禁用,这意味着只有管理员可以重置计数。怎么做呢?

           @Override
           public void onClick(View arg0) {

               count10counter=0;
               tvcount10.setText ( String.valueOf ( count10counter ) );

           }
       } );```

I have a reset button which only admin can click and for users it wil be disabled always meaning only admin can reset counts. How to do it?

           @Override
           public void onClick(View arg0) {

               count10counter=0;
               tvcount10.setText ( String.valueOf ( count10counter ) );

           }
       } );```

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

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

发布评论

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

评论(1

万人眼中万个我 2025-01-18 08:54:52

在您的活动中,通过其 id 获取按钮并将其可见性设置为不可见。将此代码粘贴到实现用户日志的位置:

Button btn = findViewById (R.id.reset_button); // reset_button is the view id taken from the xml file
btn.setVisibility (View.GONE);

At your activity, get the button by its id and set its visibility to invisible. Paste this code where you implement user log:

Button btn = findViewById (R.id.reset_button); // reset_button is the view id taken from the xml file
btn.setVisibility (View.GONE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文