1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent">
5 <LinearLayout android:id="@+id/layout_loading"
6 android:layout_width="fill_parent"
7 android:layout_height="fill_parent"
8 android:orientation="vertical"
9 android:gravity="center">
10 <ProgressBar android:id="@+id/loading"
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 style="?android:attr/android:progressBarStyle"/>
14 <TextView android:id="@+id/label_loading"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:layout_marginTop="4dp"
18 android:textSize="18sp"
19 android:textColor="@android:color/white"
20 android:text="@string/loading"/>