I just want to confirm that android’s GridView only supports horizontal gravity for its children? I see in the docs it says setGravity(int): “Describes how the child views are horizontally aligned. Defaults to Gravity.LEFT”
If that is correct then what is the best way to get my items to vertically align bottom? I think one option is to wrap each item in a parent view (such as FrameLayout) of a fixed height and give the contents gravity bottom. Is that the best choice?
I think the answer here is: YES, gridview only supports horizontal gravity.