OsmAnd/OsmAnd/res/layout/loading.xml

27 lines
907 B
XML
Raw Normal View History

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"
android:layout_height="fill_parent">
2014-06-04 00:51:54 +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"
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"
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>