为每个用户禁用按钮,仅管理员可单击按钮
我有一个重置按钮,只有管理员可以单击,对于用户来说,它将始终被禁用,这意味着只有管理员可以重置计数。怎么做呢?
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的活动中,通过其 id 获取按钮并将其可见性设置为不可见。将此代码粘贴到实现用户日志的位置:
At your activity, get the button by its id and set its visibility to invisible. Paste this code where you implement user log: