2022-04-18 00:26:13 +00:00
|
|
|
<?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:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="@style/BlackButton"
|
|
|
|
android:layout_gravity="center_vertical|end"
|
|
|
|
android:text="GogoAnime"
|
|
|
|
android:id="@+id/result_recommendations_filter_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_marginStart="0dp"
|
|
|
|
android:layout_marginEnd="0dp"
|
2023-07-18 01:55:00 +00:00
|
|
|
app:layout_constraintBottom_toTopOf="@id/result_recommendations_list" />
|
2022-04-18 00:26:13 +00:00
|
|
|
|
|
|
|
<com.lagradost.cloudstream3.ui.AutofitRecyclerView
|
|
|
|
android:descendantFocusability="afterDescendants"
|
|
|
|
|
|
|
|
android:background="?attr/primaryBlackBackground"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
app:spanCount="3"
|
2023-07-18 01:55:00 +00:00
|
|
|
android:id="@+id/result_recommendations_list"
|
2022-04-18 00:26:13 +00:00
|
|
|
tools:listitem="@layout/search_result_grid"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|