Initial commit

This commit is contained in:
Finnley Somdahl 2023-10-17 18:42:43 -05:00
commit 21bfbfb139
520 changed files with 47819 additions and 0 deletions

View file

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView 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="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:layout_width="32dp"
android:layout_height="4dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="8dp"
app:cardBackgroundColor="@color/nav_tab"
app:cardCornerRadius="2dp"
app:cardElevation="0dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="24dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="24dp"
android:clipToPadding="false"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingBottom="4dp">
<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:cardBackgroundColor="#000000"
app:cardCornerRadius="16dp">
<ProgressBar
style="?android:attr/progressBarStyle"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_gravity="center"
android:indeterminate="true" />
<ImageView
android:id="@+id/itemBookImage"
android:layout_width="108dp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="centerCrop"
tools:ignore="ContentDescription" />
</androidx.cardview.widget.CardView>
<TextView
android:id="@+id/itemBookTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:ellipsize="marquee"
android:fontFamily="@font/poppins_bold"
android:minHeight="144dp"
android:textIsSelectable="true"
android:textSize="20sp"
tools:text="@string/empty" />
</LinearLayout>
<TextView
android:id="@+id/itemBookDesc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.58"
app:lineHeight="16sp"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:layout_marginTop="4dp"
android:layout_marginBottom="8dp"
tools:text="@string/always_minimize_info"
tools:ignore="TextContrastCheck"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginEnd="24dp"
android:fontFamily="@font/poppins_bold"
android:text="@string/downloads"
android:textSize="16sp" />
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
app:cardCornerRadius="16dp">
<ani.dantotsu.FadingEdgeRecyclerView
android:id="@+id/bookRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:requiresFadingEdge="vertical"
tools:listitem="@layout/item_url" />
</androidx.cardview.widget.CardView>
</LinearLayout>
</androidx.core.widget.NestedScrollView>