In android how to store EditText values in ArrayList
I am manually creating the EditText
in for
loop. How ca开发者_JAVA百科n i store all the values in ArrayList
in android.
ArrayList<String> arryList = new ArrayList<String>();
arryList.add(editText.getText().toString());
this should help..
精彩评论