22 lines
563 B
XML
22 lines
563 B
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="80sp"
|
||
|
android:orientation="horizontal"
|
||
|
>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:src="@drawable/icon1"
|
||
|
/>
|
||
|
|
||
|
<Button android:id="@+id/button"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="button"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|