67 lines
2.3 KiB
XML
67 lines
2.3 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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.prank.funky.voice.collection.CollectionActivity">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="45dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:text="@string/like_title"
|
|
android:textColor="@color/black"
|
|
android:textSize="17sp" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/framelayout_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignTop="@id/title"
|
|
android:layout_alignBottom="@id/title"
|
|
android:layout_marginStart="5dp"
|
|
android:paddingStart="10dp"
|
|
android:paddingEnd="10dp">
|
|
|
|
<ImageView
|
|
android:layout_width="26dp"
|
|
android:layout_height="26dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/icon_back_black" />
|
|
</FrameLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/favorite_recyclerview"
|
|
android:layout_below="@id/title"/>
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/empty_favorite"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/title"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="200dp"
|
|
android:layout_height="200dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:src="@drawable/image_favorite_empty" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="@string/string_favorite_empty"
|
|
android:textColor="@color/gray_color"
|
|
android:textSize="15sp" />
|
|
|
|
|
|
</LinearLayout>
|
|
</RelativeLayout> |