2015-06-26 00:13:52 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2019-05-06 11:39:03 +02:00
|
|
|
<org.fdroid.fdroid.views.swap.ConnectingView
|
2019-05-06 10:50:44 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-07 13:38:16 +02:00
|
|
|
xmlns:swap="http://schemas.android.com/apk/res-auto"
|
|
|
|
swap:toolbarColor="@color/swap_bright_blue"
|
|
|
|
swap:toolbarTitle="@string/swap_connecting"
|
2019-05-06 10:50:44 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2015-06-26 00:13:52 +10:00
|
|
|
|
2019-05-06 10:50:44 +02:00
|
|
|
<TextView
|
2015-06-26 00:13:52 +10:00
|
|
|
android:id="@+id/heading"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2015-06-26 00:13:52 +10:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:padding="30dp"
|
|
|
|
android:textAlignment="center"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:gravity="center"/>
|
2015-06-26 00:13:52 +10:00
|
|
|
|
2019-05-06 10:50:44 +02:00
|
|
|
<ProgressBar
|
2018-08-07 13:38:16 +02:00
|
|
|
android:id="@+id/progress_bar"
|
2015-06-26 00:13:52 +10:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_below="@+id/heading"/>
|
2015-06-26 00:13:52 +10:00
|
|
|
|
2019-05-06 10:50:44 +02:00
|
|
|
<TextView
|
2015-08-16 08:34:04 +10:00
|
|
|
android:layout_width="match_parent"
|
2015-08-09 22:12:09 +10:00
|
|
|
android:layout_height="wrap_content"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2015-08-09 22:12:09 +10:00
|
|
|
android:id="@+id/error"
|
2015-08-01 22:50:41 +10:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:textAlignment="center"
|
2015-08-09 22:12:09 +10:00
|
|
|
android:text="@string/swap_connection_misc_error"
|
2015-08-01 22:50:41 +10:00
|
|
|
android:visibility="gone"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:padding="30dp"/>
|
2015-08-09 22:12:09 +10:00
|
|
|
|
2019-05-06 10:50:44 +02:00
|
|
|
<Button
|
2015-08-09 22:12:09 +10:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_below="@+id/error"
|
2015-08-09 22:12:09 +10:00
|
|
|
android:id="@+id/back"
|
2015-08-01 22:50:41 +10:00
|
|
|
android:backgroundTint="@color/swap_light_blue"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:visibility="gone"
|
2018-08-07 13:38:16 +02:00
|
|
|
android:text="@string/back"/>
|
2015-07-10 01:14:32 +10:00
|
|
|
|
2019-05-06 11:39:03 +02:00
|
|
|
</org.fdroid.fdroid.views.swap.ConnectingView>
|