38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".look.LikeFragment">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginHorizontal="5dp"
|
|
android:id="@+id/rvView"/>
|
|
<LinearLayout
|
|
android:id="@+id/layout_no_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/empty_state" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvNoData"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="center_horizontal"
|
|
android:lineSpacingExtra="4dp"
|
|
android:text="@string/empty"
|
|
android:textColor="@color/colorSelect"
|
|
android:layout_marginBottom="50dp"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
</RelativeLayout> |