2015-10-21 00:04:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-10-23 01:40:27 +02:00
|
|
|
<FrameLayout
|
2015-10-21 00:04:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-10-23 01:40:27 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2015-10-28 02:10:37 +01:00
|
|
|
<LinearLayout
|
2015-10-23 01:40:27 +02:00
|
|
|
android:layout_width="wrap_content"
|
2015-10-28 02:10:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-10-23 01:40:27 +02:00
|
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
2015-10-28 02:10:37 +01:00
|
|
|
android:id="@+id/progress_container"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:id="@+id/progress_text"
|
|
|
|
android:layout_gravity="center"
|
2015-10-28 17:20:00 +01:00
|
|
|
android:visibility="invisible"
|
2015-10-28 02:10:37 +01:00
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2015-10-23 01:40:27 +02:00
|
|
|
|
2015-10-27 17:12:16 +01:00
|
|
|
<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"/>
|
2015-10-23 01:40:27 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|