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">
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
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>
|