Dantotsu/app/src/main/res/layout/activity_genre.xml
2023-10-17 18:42:43 -05:00

43 lines
No EOL
1.6 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:id="@+id/genreContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadingEdge="vertical"
android:orientation="vertical"
android:requiresFadingEdge="vertical"
android:scrollbars="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="32dp"
android:fontFamily="@font/poppins_bold"
android:text="@string/genres"
android:textSize="16sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/mediaInfoGenresRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadingEdge="vertical"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:requiresFadingEdge="vertical"
tools:itemCount="49"
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
tools:listitem="@layout/item_genre"
tools:orientation="vertical"
tools:spanCount="2" />
<ProgressBar
android:id="@+id/mediaInfoGenresProgressBar"
style="?android:attr/progressBarStyle"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_margin="32dp" />
</LinearLayout>