I'm working on my first Android App and am still trying to learn how the structure for everything goes. At the moment, I have a "view" called "row". Row has some TextViews and an EditText view in it that are filled when the view is created. For the main program, I use a ScrollView and add the Rows to it. A ListView would be more ideal, but the EditText messes things up.
At this point, I can create multiple Rows and add them to the ScrollView (Actually I add them to the LinearLayout inside the ScrollView). But how do I access the values each one contains? I believe they all have the same ID (row). My first thought was to create an array of "item" objects that hold the data and somehow bind each one to a view, but I'm not sure how to do that. Are there any suggestions, tutorials, or samples that I should look at?