Reputation: 8981
How can I check if two EditTextField
's have changed content under runtime in android? I want to enable a button if both EditTextField
's have some content.
Thanks in advance.
Upvotes: 2
Views: 628
Reputation: 9923
EditText
is a subclass of TextView
, which has the method you're looking for, addTextChangedListener().
Upvotes: 4