Reputation: 33
I am manually creating the EditText
in for
loop. How can i store all the values in ArrayList
in android.
Upvotes: 1
Views: 6094
Reputation: 13501
ArrayList<String> arryList = new ArrayList<String>();
arryList.add(editText.getText().toString());
this should help..
Upvotes: 3