mirror of
https://github.com/element-hq/element-android
synced 2024-12-23 01:31:24 +03:00
98 lines
No EOL
3.7 KiB
XML
98 lines
No EOL
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
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" />
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/errorView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/layout_horizontal_margin">
|
|
|
|
<TextView
|
|
android:id="@+id/errorMessageView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:textColor="?riotx_text_primary"
|
|
android:textSize="16sp"
|
|
tools:text="Une erreur est survenue" />
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/errorRetryView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="8dp"
|
|
android:minWidth="190dp"
|
|
android:text="@string/global_retry" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/emptyView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/layout_horizontal_margin">
|
|
|
|
<TextView
|
|
android:id="@+id/emptyTitleView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="49dp"
|
|
android:gravity="center"
|
|
android:textColor="?riotx_text_primary"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintBottom_toTopOf="@+id/emptyImageView"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
tools:text="@string/room_list_catchup_empty_title" />
|
|
|
|
<ImageView
|
|
android:id="@+id/emptyImageView"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:layout_gravity="center_horizontal"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@drawable/ic_noun_party_popper" />
|
|
|
|
<TextView
|
|
android:id="@+id/emptyMessageView"
|
|
android:layout_width="220dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="49dp"
|
|
android:gravity="center"
|
|
android:textColor="?riotx_text_secondary"
|
|
android:textSize="14sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/emptyImageView"
|
|
tools:text="@string/room_list_catchup_empty_body" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</merge> |