Android - Layout with images -
Android - Layout with images -
i've been working on few days couldn't layout need. have layout similar image below. can guide me ? kind of layout , view should utilize ?
thanks :)
ive added code generated drawing want in layout editor in eclipse.
looks this
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <linearlayout android:id="@+id/linearlayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <linearlayout android:id="@+id/linearlayout2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.81" > <imageview android:id="@+id/imageview2" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1.00" android:src="@drawable/ic_launcher" /> <linearlayout android:id="@+id/linearlayout3" android:layout_width="0dp" android:layout_height="fill_parent" android:layout_weight="1" android:orientation="vertical" > <imageview android:id="@+id/imageview02" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1.00" android:src="@drawable/ic_launcher" /> <imageview android:id="@+id/imageview01" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1.00" android:src="@drawable/ic_launcher" /> <imageview android:id="@+id/imageview3" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1.00" android:src="@drawable/ic_launcher" /> </linearlayout> </linearlayout> <imageview android:id="@+id/imageview1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /> </linearlayout> </linearlayout>
android image layout
Comments
Post a Comment