1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <LinearLayout
6 android:layout_width="fill_parent"
7 android:layout_height="wrap_content"
8 android:paddingBottom="16dp"
9 android:orientation="vertical">
10
11 <ProgressBar
12 android:id="@+id/progressbar"
13 android:layout_width="match_parent"
14 android:layout_height="130dp"
15 android:paddingLeft="8dp"
16 android:paddingRight="8dp"
17 android:paddingBottom="16dp" />
18
19 <TextView
20 android:id="@+id/text"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content"
23 android:gravity="center"
24 android:minHeight="?android:attr/listPreferredItemHeightSmall"
25 android:paddingLeft="8dp"
26 android:paddingRight="8dp"
27 android:textAppearance="?textAppearanceBodyMedium"
28 android:text="Please be patient..." />
29
30 </LinearLayout>
31
32</layout>