[tx-robot] updated from transifex
[pub/Android/ownCloud.git] / res / layout / migration_layout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:gravity="center_vertical">
7
8 <ProgressBar
9 style="?android:attr/progressBarStyleHorizontal"
10 android:layout_width="match_parent"
11 android:layout_height="wrap_content"
12 android:id="@+id/migrationProgress"
13 android:layout_gravity="center_horizontal"
14 android:progress="50"
15 android:paddingLeft="30dp"
16 android:paddingRight="30dp"/>
17
18 <TextView
19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
21 android:textAppearance="?android:attr/textAppearanceMedium"
22 android:text=""
23 android:id="@+id/migrationText"
24 android:layout_gravity="center_horizontal"/>
25
26 <Button
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:text="@string/drawer_close"
30 android:id="@+id/finishButton"
31 android:layout_gravity="center_horizontal"/>
32 </LinearLayout>