Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让一个按钮变灰,直到用户使用手机图库中的所需图像填充图像视图。我将如何对此进行编码以使按钮的默认状态变灰(和禁用),但是一旦图像显示在图像视图中,按钮就会启用并且不再对用户变灰?
myButton.setEnabled(false);你试过这个吗?这将使您的按钮看起来变灰并且不监听点击事件!
myButton.setEnabled(false);
myButton.setEnabled(true);如果您想收听点击事件,请致电 并打开您的按钮
myButton.setEnabled(true);
如果你想制作一个自定义按钮,你也可以看到这个链接