I\'ve created a ListView (myList) with one EditText-Field in each row (R.id.mannschaften). Under the ListView, I\'ve created a Button and set an OnClickListener for it in th
Solved the Problem with the help of a friend:
private void ButtonClick() {
/** get all values of the EditText-Fields */
View v;
ArrayList mannschaftsnamen = new ArrayList();
EditText et;
for (int i = 0; i < myList.getCount(); i++) {
v = myList.getAdapter().getView(i, null, null);
et = (EditText) v.findViewById(i);
mannschaftsnamen.add(et.getText().toString());
}
....
}