blob: ba6b43817d9f5b7563237282a5c6bcd4a6d633eb [file] [log] [blame]
<?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"
>
<ScrollView android:id="@+id/list_scroller"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
>
<LinearLayout android:id="@+id/list_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<ImageView android:id="@+id/banner_img"
android:src="@drawable/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
/>
<TextView android:id="@+id/banner_info"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
/>
</LinearLayout>
</ScrollView>
<LinearLayout android:id="@+id/buttons_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button android:id="@+id/btn_run"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/btn_run_text"
/>
<Button android:id="@+id/btn_show"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/btn_show_text"
/>
</LinearLayout>
</LinearLayout>