Fix episode number matching, add scroll-based preloading, and fix search UI

This commit is contained in:
tvmon-dev
2026-04-15 20:45:28 +09:00
parent 9a7ea53c1e
commit dae2fa6082
7 changed files with 75 additions and 36 deletions

View File

@@ -3,18 +3,20 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
android:background="@color/default_background"
android:padding="32dp">
<androidx.appcompat.widget.SearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:iconifiedByDefault="false"
android:queryHint="@string/search_hint" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/search_results"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="16dp" />
android:layout_marginTop="24dp" />
</LinearLayout>