2015-06-26 00:13:52 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<org.fdroid.fdroid.views.swap.SwapConnecting
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-08-01 22:50:41 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-06-26 00:13:52 +10:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/heading"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:padding="30dp"
|
|
|
|
android:textAlignment="center"
|
2015-08-17 21:22:21 +10:00
|
|
|
tools:text="Connecting with Nexus 4"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
2015-06-26 00:13:52 +10:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
2015-08-09 22:12:09 +10: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"
|
|
|
|
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"
|
2015-08-17 21:22:21 +10:00
|
|
|
android:padding="30dp"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
2015-08-09 22:12:09 +10:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/back"
|
2015-08-01 22:50:41 +10:00
|
|
|
android:backgroundTint="@color/swap_light_blue"
|
|
|
|
app:backgroundTint="@color/swap_light_blue"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:visibility="gone"
|
2015-08-17 21:22:21 +10:00
|
|
|
android:text="@string/back"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
2015-07-10 01:14:32 +10:00
|
|
|
|
2015-06-26 00:13:52 +10:00
|
|
|
</org.fdroid.fdroid.views.swap.SwapConnecting>
|