23 lines
863 B
XML
23 lines
863 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:gravity="center"
|
||
|
android:padding="8dp">
|
||
|
<TextView
|
||
|
android:id="@+id/errorMsg"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBar"
|
||
|
style="?android:attr/progressBarStyle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
<Button
|
||
|
android:id="@+id/retryButton"
|
||
|
style="@style/TuskyButton.TextButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/action_retry"/>
|
||
|
</LinearLayout>
|