rahul.bhatia.k
rahul.bhatia.k

Reputation: 81

Android ListView element

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_height 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

Answers (1)

AITAALI_ABDERRAHMANE
AITAALI_ABDERRAHMANE

Reputation: 2519

if I understood well your question you must use

android:layout_height="fill_parent"

Upvotes: 1

Related Questions