0

我有两个 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, 

如果他删除了他写的内容,然后再次禁用该按钮。

如果有人回答我,我会很遗憾。

安卓2.2。

4

1 回答 1

1

你想要TextWatcher。使用它来确定何时更改两者中的文本。每次更改文本时或在 while 循环中,您都可以执行“if else”。希望这可以帮助。我想你会感激不后悔的帮助:)

于 2012-11-27T23:39:17.677 回答