I have a class that creates a view to gather data via a function getView()
that provides a view with an EditText.
This class has also has variable answer
.
When the user chances the EditText I want to store the content of the EditText in answer
.
If I would use an onKeyListener I fear that the answer will probably get stored before the last letter is entered.
Is there a good way to handle this in the getView()
function via some other listener?