Android - ImageView fit in TableLayout



How to make sure my Imageview fit in TableLayout? Mine can't be fit like this one.


enter image description here


Mine is like this


enter image description here


My code



<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://ift.tt/nIICcg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:scrollbars="none" >

<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/kelas_mengaji" />

</LinearLayout>

</TableRow>
</TableLayout>

</ScrollView>


Please advice. Thank you.


No comments:

Post a Comment