32 lines
No EOL
1.2 KiB
XML
32 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/itemTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="32dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="32dp"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:text="@string/relations"
|
|
android:textSize="16sp" />
|
|
|
|
<ani.dantotsu.FadingEdgeRecyclerView
|
|
android:id="@+id/itemRecycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:nestedScrollingEnabled="true"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:requiresFadingEdge="horizontal"
|
|
tools:itemCount="4"
|
|
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
tools:listitem="@layout/item_media_compact"
|
|
tools:orientation="horizontal" />
|
|
</LinearLayout> |