I am dynamically generating EditText
box according to the user in开发者_JAVA百科put. How can I store all the values in array list. Can anyone help me to solve this problem?
ArrayList<String> arryList = new ArrayList<String>();
arryList.add(editText.getText().toString);
this should help..
精彩评论