40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/without_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingStart="5dp"
|
|
android:paddingTop="15dp"
|
|
android:paddingEnd="5dp"
|
|
android:paddingBottom="15dp"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/gift_wall_no_data"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="140dp"
|
|
android:layout_height="95dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="80dp"
|
|
android:background="@drawable/icon_gift_wall_no_data" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="11dp"
|
|
android:text="@string/lit_icon_hint"
|
|
android:textColor="#99000000"
|
|
android:textSize="12sp" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |