2013-09-10 12:45:00 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/loadingLayout"
|
2013-09-18 20:13:24 +04:00
|
|
|
android:layout_width="match_parent"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loadingBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-18 20:13:24 +04:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_marginTop="10dp" />
|
2013-09-10 12:45:00 +04:00
|
|
|
|
|
|
|
<TextView
|
2013-09-18 20:13:24 +04:00
|
|
|
android:id="@+id/loadingText"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2013-09-18 20:13:24 +04:00
|
|
|
android:layout_marginRight="20dp"
|
2013-09-10 12:45:00 +04:00
|
|
|
android:text="TextView" />
|
|
|
|
|
|
|
|
</LinearLayout>
|