Home | History | Annotate | Download | only in layout
      1 <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 
     22