Search code examples
androidstackview

Android 3.0: Stackview example NON widget


I'm trying to use a StackView in an Activity using a BaseAdapter for the views in the StackView. Nothing is showing up, even though my getView in the adapter is being called. Anyone have any luck getting StackView to work in an Activity? Know of an example?


Solution

  • I got it working. It's really picky about how you declare the size of your views. You can't do wrap_content if you are downloading images and populating your views, it seems to need to measure the layout beforehand, so if your views aren't loaded until later you will get nothing drawn. Specify a set height/width on your views that load into the StackView and you're good.