My goal is simple. I'd like to be able to take user input from 4 edittext fields, with ids of et1-4, and put them into an array named aSummary1[] = {et1, et2, et3, et4};. The four fields are different data types, two being words, one numbers, and one a password. This will all be displayed in a ListView. This part I can do. The part I can't figure out is if I want to add a new row in the ListView, I'd like to create a new string array, let's say aSummary2[] with different values, but the same parameters: {word, word, number, password};, then aSummary3[] and so on and so forth.
How would one go about doing this? Or if there is a better way, how would I assign variables and strings to list entries with no limit. For instance, with list entry x comes variables w y and z assigned to x, but with variable a comes b c and e, and with q comes r s and t.