| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.ivalentin.margolariak.CustomScrollView
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/scrollView3"
- android:background="@color/background_app"
- android:padding="7dp"
- tools:ignore="Overdraw">
- <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"
- android:textStyle="bold"/>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Medium"
- android:text="@string/lablanca_nofestivals"
- android:id="@+id/textView11"
- android:background="@drawable/entry"
- android:padding="7dp"/>
- </LinearLayout>
- </com.ivalentin.margolariak.CustomScrollView>
|