insert an image in a tablelayout without streching it android
Posted
by Sephy
on Stack Overflow
See other posts from Stack Overflow
or by Sephy
Published on 2010-04-26T12:26:28Z
Indexed on
2010/04/26
14:03 UTC
Read the original article
Hit count: 558
Hi,
I'm having some trouble getting pictures inside a tablelayout...actually, each I have 2 columns and when i put a picture in a cell of the table, it's completely streched and disproportionnated...I can't find how to make it stay it's original inside the cell and let the rest of the space filled by white background for instance.... XML is like that :
<TableLayout android:layout_width="fill_parent" android:stretchColumns="*"
android:layout_marginLeft="3dip" android:layout_marginRight="10dip"
android:layout_height="wrap_content">
<TableRow android:layout_marginBottom="10dip">
<TextView android:id="@+id/tv01" android:text="text1"
android:textSize="14sp" android:layout_margin="1dip"
android:layout_height="wrap_content" android:textColor="@color/bleuLink"
android:layout_width="wrap_content" android:layout_weight="1"
android:background="@color/background"></TextView>
<Button android:id="@+id/add" android:background="@drawable/addressbook"
android:layout_height="wrap_content" android:layout_width="wrap_content"></Button>
<Button android:id="@+id/call" android:background="@drawable/greenphone"
android:layout_height="wrap_content" android:layout_width="wrap_content"></Button>
help plz, thx
© Stack Overflow or respective owner