diff options
Diffstat (limited to 'app/src/main/res/layout/progress.xml')
-rw-r--r-- | app/src/main/res/layout/progress.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/src/main/res/layout/progress.xml b/app/src/main/res/layout/progress.xml new file mode 100644 index 00000000..a1904c11 --- /dev/null +++ b/app/src/main/res/layout/progress.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_weight="1" + android:layout_width="0dip" + android:layout_height="fill_parent" + android:padding="10dp"> + + <ProgressBar + android:layout_width="wrap_content" + android:layout_height="fill_parent" + android:layout_marginRight="10dp"/> + + <TextView + android:id="@+id/progress_message" + android:text="@string/progress.wait" + android:layout_width="wrap_content" + android:layout_height="fill_parent"/> + +</LinearLayout>
\ No newline at end of file |