Reputation: 81
I'm trying to make a ListView
of view elements that should all be a full page size in the style of facebook newsstream. I can't seem to figure out how to set the sizes of each ListView
element to be a full page size. Every android:layout_heigh
t is set to match_parent
. If i set it to 500dip
it is close to full page but that doesn't seem like good design to me.
Upvotes: 0
Views: 69
Reputation: 2519
if I understood well your question you must use
android:layout_height="fill_parent"
Upvotes: 1