Dantotsu/app/src/main/res/layout/item_stream.xml
2024-02-06 02:16:10 -06:00

40 lines
No EOL
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:orientation="vertical"
android:padding="8dp">
<TextView
android:id="@+id/streamName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="8dp"
android:fontFamily="@font/poppins_bold"
android:textAllCaps="true"
android:textSize="16sp"
tools:text="@string/anime" />
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="16dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/streamRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:isScrollContainer="false"
android:nestedScrollingEnabled="false"
tools:itemCount="4"
tools:listitem="@layout/item_url" />
</androidx.cardview.widget.CardView>
</LinearLayout>