mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
32 lines
No EOL
1.2 KiB
XML
32 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical">
|
|
|
|
<ProgressBar
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/migrationProgress"
|
|
android:layout_gravity="center_horizontal"
|
|
android:progress="50"
|
|
android:paddingLeft="30dp"
|
|
android:paddingRight="30dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:text=""
|
|
android:id="@+id/migrationText"
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/drawer_close"
|
|
android:id="@+id/finishButton"
|
|
android:layout_gravity="center_horizontal"/>
|
|
</LinearLayout> |