2015-03-05 13:46:13 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/loading"
|
|
|
|
android:layout_width="fill_parent"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-04-03 13:33:55 +02:00
|
|
|
android:layout_gravity="top|start"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:gravity="end"
|
|
|
|
android:paddingTop="5dp"
|
2015-03-05 13:46:13 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/ProgressBar"
|
|
|
|
android:layout_width="wrap_content"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:layout_height="30dp"/>
|
2015-03-05 13:46:13 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/ProgressMessage"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:maxLines="1"
|
2015-03-06 21:33:57 +01:00
|
|
|
android:visibility="gone"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-03-05 13:46:13 +01:00
|
|
|
android:text="@string/loading_data"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:layout_marginRight="5dp"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
2015-03-05 13:46:13 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|