我有两个EditText字段和一个按钮。
我想做以下事情:
if the EditText1 && EditText2 == empty
then
button is disabled
else
button is disabled
只有当用户在两个字段中都写一些内容时才应启用该按钮
用简单的话说: if the user write something in both fields, the button will be enabeld,
如果他删除了他写的内容,则再次禁用该按钮。
如果有人回答我,我将感到遗憾。android 2.2。
答案 0 :(得分:1)
你想要TextWatcher。使用此选项可确定何时更改文本。您可以在每次更改文本时或在while循环中执行“if else”。希望这可以帮助。而且我认为你会感激不悔帮助:)