|
@@ -90,33 +90,14 @@
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvTitle" />
|
|
|
|
|
|
<LinearLayout
|
|
|
- android:id="@+id/emptLayout"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:orientation="vertical"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintLeft_toLeftOf="parent"
|
|
|
- app:layout_constraintRight_toRightOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tvTitle">
|
|
|
+ android:id="@+id/emptyLayout"
|
|
|
+ style="@style/empty_linear_layout_style"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tvTitle"
|
|
|
+ tools:ignore="MissingConstraints">
|
|
|
|
|
|
- <ImageView
|
|
|
- android:id="@+id/iv_empty"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center_horizontal"
|
|
|
- android:layout_marginTop="@dimen/divider_85px"
|
|
|
- android:background="@mipmap/icon_empt_data" />
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView style="@style/empty_image_view_style" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/empty_view_message"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center_horizontal"
|
|
|
- android:layout_marginTop="@dimen/divider_32px"
|
|
|
- android:paddingEnd="@dimen/divider_18px"
|
|
|
- android:text="@string/there_is_currently_no_data_available"
|
|
|
- android:textColor="@color/coloe_D8D8D8"
|
|
|
- android:textSize="@dimen/divider_42px" />
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView style="@style/empty_text_view_style" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|