| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:background="@color/background_app">
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@color/background_menu"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="2dp">
- <ImageView
- android:contentDescription="@string/app_name"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:id="@+id/iv_logo"
- android:src="@drawable/ic_launcher"
- android:adjustViewBounds="true"
- android:layout_weight=".2"
- android:maxHeight="45dp"
- android:maxWidth="45dp"
- android:padding="1dp"
- android:layout_gravity="center_vertical"/>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical|center"
- android:layout_weight=".8"
- android:gravity="center"
- android:orientation="vertical" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="@string/app_name"
- android:contentDescription="@string/app_name"
- android:textSize="18sp"
- android:textStyle="bold"
- android:textColor="@color/menu_entry"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="@string/pop_menu_sponsors"
- android:textSize="20sp"
- android:textColor="@color/menu_entry"/>
- </LinearLayout>
- <ImageButton
- android:layout_width="40dp"
- android:layout_height="match_parent"
- android:src="@android:drawable/ic_menu_revert"
- android:onClick="finish"
- android:contentDescription="@string/accept"
- android:layout_weight=".2"
- android:id="@+id/bt_back"
- app:srcCompat="@android:drawable/ic_menu_revert"
- android:background="#00000000"/>
- </LinearLayout>
- <ScrollView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@color/background_app"
- >
- <LinearLayout
- android:id="@+id/ll_sponsors_section"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:background="@drawable/section"
- android:layout_marginBottom="40dp"
- android:layout_marginEnd="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginStart="10dp"
- android:layout_marginTop="10dp">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/pop_menu_sponsors"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:textStyle="bold"
- tools:layout_width="match_parent"
- android:background="@drawable/section_title"
- android:paddingBottom="4dp"
- android:paddingEnd="10dp"
- android:paddingLeft="20dp"
- android:paddingRight="10dp"
- android:paddingStart="20dp"
- android:paddingTop="4dp"
- android:textColor="@color/section_title"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/ll_sponsor_list"
- android:layout_marginBottom="20dp">
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|