2014-06-04 00:51:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="fill_parent">
|
2014-06-04 00:51:54 +02:00
|
|
|
|
2015-04-17 00:37:39 +02:00
|
|
|
<LinearLayout
|
2014-06-04 00:51:54 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center_vertical|center_horizontal"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="horizontal">
|
2014-06-04 00:51:54 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/ProgressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/ProgressMessage"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-04 01:02:39 +02:00
|
|
|
android:maxLines="3"
|
2014-06-04 00:51:54 +02:00
|
|
|
android:text="@string/loading_data"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2014-06-04 00:51:54 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-07-21 14:32:34 +02:00
|
|
|
</FrameLayout>
|