2014-06-24 16:02:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-09-01 15:06:05 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="wrap_content"
|
2015-09-01 15:06:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dip"
|
|
|
|
android:gravity="center">
|
2014-06-24 16:02:38 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<ProgressBar
|
2015-09-01 15:06:05 +00:00
|
|
|
style="?android:attr/progressBarStyle"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
2015-09-01 15:06:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:layout_marginEnd="16dp" />
|
2014-06-24 16:02:38 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/loading_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2015-09-01 15:06:05 +00:00
|
|
|
</LinearLayout>
|