Android layout "3 columns" imageview + textview + imageview -
maybe simple question, i'm trying achieve such layout linearlayout:
imageview textview imageview ----fixed width--- + ---------- fill ---------- + ----fixed width (right align)---
the problem textview maybe take space on right, making second imageview disappearing.
try put android:layout_width="0dip"
, android:weight="1"
textview
while having 2 imageviews
no weight property. ensure area in between 2 imageview
s filled textview
.
Comments
Post a Comment