123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:android="http://schemas.android.com/apk/res/android">
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_gravity="center_vertical|center_horizontal"
- android:visibility="gone" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/image_error"
- android:text=":("
- android:layout_gravity="center"
- android:textSize="32sp"
- android:visibility="gone"/>
- <include layout="@layout/chapter_image"/>
- </FrameLayout>
|