I am little confused with following scenario:
I have an add button which I use it to add a number of EditText
fields, when I tap on the save button I should get the values from the EditText
s.
How can I get these values from all of the EditText fields?
You could do something like this:
Store all the EditText fields you create programmatically inside a List. So whenever you have
viewGroup.add(myEditText);
you would also havemyList.add(myEditText);
Then when you press 'save' just loop on your list and use
getText()
to get the data from your EditText fields.I'm sure there are also other ways to accomplish this ;)