I have a "header" in my main layout that consists of a title TextView and a Spinner control. I'd like everything below the spinner to be the contents, and change the contents using the spinner. Some of the contents would just be a single (long) TextView, but some would consist of a multiple TextViews and maybe even a Drawable. From what I read of includes, I'm not sure that's the right use for them. Would it be possible to put all the data into a single content pane and use the spinner to jump/scroll the contents to the right section (like a named anchor or something)? I don't think I need to have separate Actions for each view, that seems like overkill...
Edit: I tried several things, and the closest to what I like (and can't get working) is to put each category in its own view, and all those views in a vertical LinearLayout. The problem is that I want to pad the size of the last view item so that it can be scrolled all the way up (so the top of the section is at the top of the screen). I can't figure out how to do this, because the screen shape info isn't available during onCreate(), and I can't change the sizes outside of onCreate().