| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.ivalentin.gm.CustomScrollView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@color/background_app"
- android:padding="7dp">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingBottom="5dp">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/section"
- android:padding="7dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/lablanca_title"
- android:id="@+id/textView10"/>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/iv_lablanca_header"
- android:contentDescription="@string/app_cdesc"
- android:layout_weight=".4"
- android:layout_margin="3dp"
- android:background="@color/album_border"
- android:padding="1dp"/>
- <WebView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:id="@+id/wv_lablanca_header"
- android:padding="7dp"
- android:layout_marginBottom="7dp"
- android:layout_weight=".6"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/section"
- android:padding="7dp"
- android:layout_marginTop="15dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/lablanca_schedule"
- />
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp">
- <Button
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:text="@string/lablanca_schedule_city"
- android:id="@+id/bt_lablanca_schedule_city"
- android:background="@drawable/button_selector"
- android:textColor="@color/input_button_color"
- android:textStyle="bold"
- android:layout_margin="6dp"
- android:layout_weight=".5"/>
- <Button
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:text="@string/lablanca_schedule_gm"
- android:id="@+id/bt_lablanca_schedule_gm"
- android:background="@drawable/button_selector"
- android:textColor="@color/input_button_color"
- android:textStyle="bold"
- android:layout_margin="6dp"
- android:layout_weight=".5"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingBottom="20dp"
- android:layout_marginTop="15dp">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/section"
- android:padding="7dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/lablanca_prices"
- android:id="@+id/textView12"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/lablanca_prices_days"
- android:layout_marginBottom="15dp"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/ll_lablanca_prices_days_list">
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/lablanca_prices_pack"
- android:layout_marginBottom="15dp"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/ll_lablanca_prices_packs_list"
- />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </com.ivalentin.gm.CustomScrollView>
|