24 lines
859 B
XML
24 lines
859 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtvLoading"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="8dp"
|
|
android:text="@string/loading_label" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar1"
|
|
style="?android:attr/progressBarStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_margin="8dp"
|
|
android:layout_toLeftOf="@+id/txtvLoading" />
|
|
|
|
</RelativeLayout> |