2017-04-26 21:24:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-06-15 16:26:48 +02:00
|
|
|
<LinearLayout
|
2017-04-26 21:24:33 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
2017-06-15 16:26:48 +02:00
|
|
|
android:gravity="center_horizontal"
|
2017-04-26 21:24:33 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/error_message_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/general_error"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="Network error"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/error_button_retry"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:text="@string/retry"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:theme="@style/RedButton"/>
|
|
|
|
|
2017-06-15 16:26:48 +02:00
|
|
|
</LinearLayout>
|