2014-06-24 16:02:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
2014-06-24 16:02:38 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<ProgressBar
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-06-24 16:02:38 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/loading_text"
|
|
|
|
android:layout_toRightOf="@id/progress"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:layout_toEndOf="@id/progress"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_alignBottom="@id/progress"
|
|
|
|
android:layout_alignTop="@id/progress"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2014-06-24 16:02:38 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
</RelativeLayout>
|