blob: 822e8cd3b4ee71eaaa160561bee5ee2639bf64c5 [file] [log] [blame]
Joe Onorato4058ba02010-10-31 11:38:04 -07001<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 android:layout_width="match_parent"
3 android:layout_height="80sp"
4 android:orientation="horizontal"
5 >
6
7 <ImageView
8 android:layout_width="wrap_content"
9 android:layout_height="wrap_content"
10 android:layout_weight="1"
11 android:src="@drawable/icon1"
12 />
13
14 <Button android:id="@+id/button"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:text="button"
18 />
19
20</LinearLayout>
21