I am attempting to improve the amount time it takes to fill the items into the ScrollView. If I hard code the height (not in pixels of course) of every RelativeLayout in the LinearLayout in the other LinearLayout in the ScrollView… can I get ScrollView to display the visible ones first and then when they are displayed to load up the rest later? The ScrollView should start off scrolled to a specific location.. not just the top of the screen. Now if we have to load from the top that is OK because there is about one third above the visible area and the rest below.
I am attempting to improve the amount time it takes to fill the items
Share
You could use ViewStub to inflate extra items only when you need it, but it sounds like you are describing what ListView does already.