Fixed: Rotating screen after viewing a file would return you to the
[pub/Android/ownCloud.git] / res / layout / progressbar_layout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent" android:layout_height="fill_parent"
4 android:padding="5dp">
5 <ImageView android:id="@+id/status_icon"
6 android:layout_width="wrap_content" android:layout_height="fill_parent"
7 android:layout_alignParentLeft="true" />
8
9 <RelativeLayout android:layout_width="fill_parent"
10 android:layout_height="fill_parent" android:layout_toRightOf="@id/status_icon">
11
12 <TextView android:id="@+id/status_text" android:layout_width="fill_parent"
13 android:layout_height="wrap_content" android:layout_alignParentTop="true" />
14 <ProgressBar android:id="@+id/status_progress"
15 android:layout_width="fill_parent" android:layout_height="wrap_content"
16 android:layout_below="@id/status_text"
17 android:progressDrawable="@android:drawable/progress_horizontal"
18 android:indeterminate="false" android:indeterminateOnly="false" />
19
20 </RelativeLayout>
21
22 </RelativeLayout>