0

I am dynamically generating EditText box according to the user input. How can I store all the values in array list. Can anyone help me to solve this problem?

Andro Selva
  • 53,910
  • 52
  • 193
  • 240
Felix
  • 33
  • 1
  • 6
  • 2
    Please give a better description of your question and post some code to help us help you. – Egor Jun 20 '11 at 12:47
  • http://stackoverflow.com/questions/5918320/dynamically-add-textviews-to-a-linearlayout See selected answer and comments related to it. this is your complete answer. – Pankaj Kumar Jun 20 '11 at 13:03

1 Answers1

2
ArrayList<String> arryList = new ArrayList<String>();  
arryList.add(editText.getText().toString); 

this should help..

Nikhil
  • 16,194
  • 20
  • 64
  • 81