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
Regarding why the selected answer might sometimes throw a null on the "et = (EditText) v.findViewById(i);"
Would it not be at that point trying to select the item at position i WITHIN the view that you had previously selected? Thus if there are fewer items in the child views than there are items in the whole list, you would get null due to i trying to select items that don't exist.
Perhaps a nested loop could solve this problem? Or if you already know the index of the element you need, simply give it the index directly.