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"
|
|
|
|
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"
|
|
|
|
android:text="@string/swap_connecting" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/progress"
|
|
|
|
tools:text="Downloading index from http://10.0.0.4:8888/fdroid/repo"
|
|
|
|
android:padding="30dp" />
|
|
|
|
|
2015-07-10 01:14:32 +10:00
|
|
|
<!-- TODO: Add button for "Retry" and show an error message when failed connecting. -->
|
|
|
|
|
2015-06-26 00:13:52 +10:00
|
|
|
</org.fdroid.fdroid.views.swap.SwapConnecting>
|