| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?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"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/tv_album_title"
- 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:paddingStart="20dp"
- android:paddingTop="4dp"
- android:textColor="@color/section_title"
- android:layout_marginBottom="-1.3dp"
- android:layout_marginEnd="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginStart="10dp"
- android:layout_marginTop="10dp"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/section_large"
- android:layout_marginBottom="10dp"
- android:layout_marginEnd="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginStart="10dp"
- android:layout_marginTop="0dp">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp"
- android:layout_margin="8dp">
- <WebView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/wv_album_description"/>
- </LinearLayout>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="7dp"
- android:layout_marginTop="15dp"
- android:layout_marginRight="7dp"
- android:layout_marginBottom="7dp"
- android:id="@+id/ll_album_list">
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </com.ivalentin.margolariak.CustomScrollView>
|