Visually balancing loading dialog.

This commit is contained in:
George Venios 2015-09-01 18:06:05 +03:00 committed by George Venios
parent 748640240b
commit 7bbd9fcd82
1 changed files with 9 additions and 14 deletions

View File

@ -1,25 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center"
android:padding="10dip"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:padding="16dip"
android:gravity="center">
<ProgressBar
style="?android:attr/progressBarStyleLarge"
style="?android:attr/progressBarStyle"
android:id="@+id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:layout_marginRight="16dp"
android:layout_marginEnd="16dp" />
<TextView
android:id="@+id/loading_text"
android:layout_toRightOf="@id/progress"
android:layout_toEndOf="@id/progress"
android:layout_alignBottom="@id/progress"
android:layout_alignTop="@id/progress"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</LinearLayout>