mirror of
https://github.com/element-hq/element-android
synced 2024-12-23 01:31:24 +03:00
73 lines
No EOL
2.3 KiB
XML
73 lines
No EOL
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge 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:minHeight="40dp"
|
|
android:padding="8dp"
|
|
tools:parentTag="android.widget.FrameLayout">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/errorView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/errorMessageView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:textColor="@android:color/black"
|
|
android:textSize="16sp"
|
|
tools:text="Une erreur est survenue" />
|
|
|
|
|
|
<Button
|
|
android:id="@+id/errorRetryView"
|
|
android:layout_width="190dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="8dp"
|
|
android:text="@string/global_retry"
|
|
android:textColor="@android:color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/emptyView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/emptyMessageView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:textColor="@android:color/black"
|
|
android:textSize="16sp" />
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/emptyImageView"
|
|
android:layout_width="190dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="8dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</merge> |