2015-10-20 18:04:04 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-10-22 19:40:27 -04:00
|
|
|
<FrameLayout
|
2015-10-20 18:04:04 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-10-22 19:40:27 -04:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2015-10-27 21:10:37 -04:00
|
|
|
<LinearLayout
|
2015-10-22 19:40:27 -04:00
|
|
|
android:layout_width="wrap_content"
|
2015-10-27 21:10:37 -04:00
|
|
|
android:layout_height="wrap_content"
|
2015-10-22 19:40:27 -04:00
|
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
2015-10-27 21:10:37 -04: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 12:20:00 -04:00
|
|
|
android:visibility="invisible"
|
2015-10-27 21:10:37 -04:00
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2015-10-22 19:40:27 -04:00
|
|
|
|
2015-10-27 12:12:16 -04: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-22 19:40:27 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|