2021-12-28 01:37:07 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
2022-06-03 00:40:16 +05:30
|
|
|
tools:context=".fragments.SearchFragment">
|
2021-12-28 01:37:07 +05:30
|
|
|
|
2022-05-15 17:24:13 +05:30
|
|
|
<LinearLayout
|
2022-05-15 13:38:47 +05:30
|
|
|
android:id="@+id/searchbar_holder"
|
2022-05-09 22:10:51 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
2022-05-15 13:38:47 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/outlinedTextField"
|
|
|
|
style="@style/Widget.Material3.CardView.Filled"
|
2022-05-15 17:24:13 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_weight="1"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-05-15 17:24:13 +05:30
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2022-06-04 12:05:38 +05:30
|
|
|
app:cardCornerRadius="24dp"
|
2022-05-15 13:38:47 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
2022-06-06 21:31:04 +05:30
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-06-07 12:22:11 +05:30
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
2022-05-15 13:38:47 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-07 12:22:11 +05:30
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginRight="30dp"
|
2022-05-15 13:38:47 +05:30
|
|
|
android:background="@android:color/transparent"
|
2022-06-07 12:22:11 +05:30
|
|
|
app:hintEnabled="false">
|
|
|
|
|
|
|
|
<AutoCompleteTextView
|
|
|
|
android:id="@+id/autoCompleteTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:dropDownWidth="match_parent"
|
|
|
|
android:hint="@string/search_hint"
|
|
|
|
android:imeOptions="actionSearch"
|
|
|
|
android:inputType="text"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:padding="12dp" />
|
2022-05-15 13:38:47 +05:30
|
|
|
|
2022-06-07 12:22:11 +05:30
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2022-05-15 13:38:47 +05:30
|
|
|
|
2022-06-06 21:31:04 +05:30
|
|
|
<ImageView
|
|
|
|
android:id="@+id/clearSearch_imageView"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:src="@drawable/ic_close"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginRight="16dp" />
|
|
|
|
|
2022-06-07 12:22:11 +05:30
|
|
|
</RelativeLayout>
|
2022-05-15 13:38:47 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/filterMenu_imageView"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
2022-05-15 17:24:13 +05:30
|
|
|
android:layout_weight="0"
|
2022-05-15 13:38:47 +05:30
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginTop="25dp"
|
|
|
|
android:layout_marginRight="20dp"
|
|
|
|
android:src="@drawable/ic_filter" />
|
2022-05-15 17:24:13 +05:30
|
|
|
</LinearLayout>
|
2021-12-28 01:37:07 +05:30
|
|
|
|
2022-05-09 22:10:51 +05:30
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:id="@+id/tv_genres"-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_margin="25dp"-->
|
|
|
|
<!-- android:text="Explore different genres"-->
|
|
|
|
<!-- android:textSize="16sp"-->
|
|
|
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
|
|
|
<!-- app:layout_constraintTop_toBottomOf="@+id/outlinedTextField" />-->
|
|
|
|
|
|
|
|
<!-- <LinearLayout-->
|
|
|
|
<!-- android:id="@+id/genres"-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="10dp"-->
|
|
|
|
<!-- android:layout_marginTop="30dp"-->
|
|
|
|
<!-- android:layout_marginRight="10dp"-->
|
|
|
|
<!-- android:orientation="horizontal"-->
|
|
|
|
<!-- app:layout_constraintEnd_toEndOf="parent"-->
|
|
|
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
|
|
|
<!-- app:layout_constraintTop_toBottomOf="@id/tv_genres">-->
|
|
|
|
|
|
|
|
<!-- <com.google.android.material.card.MaterialCardView-->
|
|
|
|
<!-- android:id="@+id/btn_trending"-->
|
|
|
|
<!-- android:layout_width="0dp"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="20dp"-->
|
|
|
|
<!-- android:layout_marginRight="20dp"-->
|
|
|
|
<!-- android:layout_weight=".5"-->
|
|
|
|
<!-- android:background="@android:color/transparent"-->
|
|
|
|
<!-- app:cardBackgroundColor="@android:color/transparent"-->
|
|
|
|
<!-- app:strokeWidth="0dp">-->
|
|
|
|
|
|
|
|
<!-- <RelativeLayout-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
<!-- android:orientation="horizontal">-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:id="@+id/iv_ic"-->
|
|
|
|
<!-- android:layout_width="25dp"-->
|
|
|
|
<!-- android:layout_height="25dp"-->
|
|
|
|
<!-- android:layout_alignParentLeft="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginStart="5dp"-->
|
|
|
|
<!-- android:layout_marginTop="5dp"-->
|
|
|
|
<!-- android:layout_marginEnd="5dp"-->
|
|
|
|
<!-- android:layout_marginBottom="5dp"-->
|
|
|
|
<!-- android:src="@drawable/ic_hot" />-->
|
|
|
|
|
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginLeft="7dp"-->
|
|
|
|
<!-- android:layout_toRightOf="@id/iv_ic"-->
|
|
|
|
<!-- android:text="@string/trending"-->
|
|
|
|
<!-- android:textSize="16sp" />-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:layout_width="10dp"-->
|
|
|
|
<!-- android:layout_height="10dp"-->
|
|
|
|
<!-- android:layout_alignParentRight="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:src="@drawable/ic_arrow" />-->
|
|
|
|
|
|
|
|
<!-- </RelativeLayout>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </com.google.android.material.card.MaterialCardView>-->
|
|
|
|
|
|
|
|
<!-- <com.google.android.material.card.MaterialCardView-->
|
|
|
|
<!-- android:id="@+id/btn_live"-->
|
|
|
|
<!-- android:layout_width="0dp"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="30dp"-->
|
|
|
|
<!-- android:layout_marginRight="20dp"-->
|
|
|
|
<!-- android:layout_weight=".5"-->
|
|
|
|
<!-- android:background="@android:color/transparent"-->
|
|
|
|
<!-- app:cardBackgroundColor="@android:color/transparent"-->
|
|
|
|
<!-- app:strokeWidth="0dp">-->
|
|
|
|
|
|
|
|
<!-- <RelativeLayout-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
<!-- android:orientation="horizontal">-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:id="@+id/iv_ic2"-->
|
|
|
|
<!-- android:layout_width="25dp"-->
|
|
|
|
<!-- android:layout_height="25dp"-->
|
|
|
|
<!-- android:layout_alignParentLeft="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginStart="5dp"-->
|
|
|
|
<!-- android:layout_marginTop="5dp"-->
|
|
|
|
<!-- android:layout_marginEnd="5dp"-->
|
|
|
|
<!-- android:layout_marginBottom="5dp"-->
|
|
|
|
<!-- android:src="@drawable/ic_live" />-->
|
|
|
|
|
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginLeft="7dp"-->
|
|
|
|
<!-- android:layout_toRightOf="@id/iv_ic2"-->
|
|
|
|
<!-- android:text="@string/live"-->
|
|
|
|
<!-- android:textSize="16sp" />-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:layout_width="10dp"-->
|
|
|
|
<!-- android:layout_height="10dp"-->
|
|
|
|
<!-- android:layout_alignParentRight="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:src="@drawable/ic_arrow" />-->
|
|
|
|
|
|
|
|
<!-- </RelativeLayout>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </com.google.android.material.card.MaterialCardView>-->
|
|
|
|
|
|
|
|
<!-- </LinearLayout>-->
|
|
|
|
|
|
|
|
<!-- <LinearLayout-->
|
|
|
|
<!-- android:id="@+id/genres2"-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="10dp"-->
|
|
|
|
<!-- android:layout_marginTop="20dp"-->
|
|
|
|
<!-- android:layout_marginRight="10dp"-->
|
|
|
|
<!-- android:orientation="horizontal"-->
|
|
|
|
<!-- app:layout_constraintEnd_toEndOf="parent"-->
|
|
|
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
|
|
|
<!-- app:layout_constraintTop_toBottomOf="@id/genres">-->
|
|
|
|
|
|
|
|
<!-- <com.google.android.material.card.MaterialCardView-->
|
|
|
|
<!-- android:id="@+id/btn_music"-->
|
|
|
|
<!-- android:layout_width="0dp"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="20dp"-->
|
|
|
|
<!-- android:layout_marginRight="20dp"-->
|
|
|
|
<!-- android:layout_weight=".5"-->
|
|
|
|
<!-- android:background="@android:color/transparent"-->
|
|
|
|
<!-- app:cardBackgroundColor="@android:color/transparent"-->
|
|
|
|
<!-- app:strokeWidth="0dp">-->
|
|
|
|
|
|
|
|
<!-- <RelativeLayout-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
<!-- android:orientation="horizontal">-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:id="@+id/iv_ic3"-->
|
|
|
|
<!-- android:layout_width="25dp"-->
|
|
|
|
<!-- android:layout_height="25dp"-->
|
|
|
|
<!-- android:layout_alignParentLeft="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginStart="5dp"-->
|
|
|
|
<!-- android:layout_marginTop="5dp"-->
|
|
|
|
<!-- android:layout_marginEnd="5dp"-->
|
|
|
|
<!-- android:layout_marginBottom="5dp"-->
|
|
|
|
<!-- android:src="@drawable/ic_music" />-->
|
|
|
|
|
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginLeft="7dp"-->
|
|
|
|
<!-- android:layout_toRightOf="@id/iv_ic3"-->
|
|
|
|
<!-- android:text="@string/music"-->
|
|
|
|
<!-- android:textSize="16sp" />-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:layout_width="10dp"-->
|
|
|
|
<!-- android:layout_height="10dp"-->
|
|
|
|
<!-- android:layout_alignParentRight="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:src="@drawable/ic_arrow" />-->
|
|
|
|
|
|
|
|
<!-- </RelativeLayout>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </com.google.android.material.card.MaterialCardView>-->
|
|
|
|
|
|
|
|
<!-- <com.google.android.material.card.MaterialCardView-->
|
|
|
|
<!-- android:id="@+id/btn_films"-->
|
|
|
|
<!-- android:layout_width="0dp"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_marginLeft="30dp"-->
|
|
|
|
<!-- android:layout_marginRight="20dp"-->
|
|
|
|
<!-- android:layout_weight=".5"-->
|
|
|
|
<!-- android:background="@android:color/transparent"-->
|
|
|
|
<!-- app:cardBackgroundColor="@android:color/transparent"-->
|
|
|
|
<!-- app:strokeWidth="0dp">-->
|
|
|
|
|
|
|
|
<!-- <RelativeLayout-->
|
|
|
|
<!-- android:layout_width="match_parent"-->
|
|
|
|
<!-- android:layout_height="match_parent"-->
|
|
|
|
<!-- android:orientation="horizontal">-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:id="@+id/iv_ic4"-->
|
|
|
|
<!-- android:layout_width="25dp"-->
|
|
|
|
<!-- android:layout_height="25dp"-->
|
|
|
|
<!-- android:layout_alignParentLeft="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginStart="5dp"-->
|
|
|
|
<!-- android:layout_marginTop="5dp"-->
|
|
|
|
<!-- android:layout_marginEnd="5dp"-->
|
|
|
|
<!-- android:layout_marginBottom="5dp"-->
|
|
|
|
<!-- android:src="@drawable/ic_film" />-->
|
|
|
|
|
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:layout_marginLeft="7dp"-->
|
|
|
|
<!-- android:layout_toRightOf="@id/iv_ic4"-->
|
|
|
|
<!-- android:text="@string/film"-->
|
|
|
|
<!-- android:textSize="16sp" />-->
|
|
|
|
|
|
|
|
<!-- <ImageView-->
|
|
|
|
<!-- android:layout_width="10dp"-->
|
|
|
|
<!-- android:layout_height="10dp"-->
|
|
|
|
<!-- android:layout_alignParentRight="true"-->
|
|
|
|
<!-- android:layout_centerVertical="true"-->
|
|
|
|
<!-- android:src="@drawable/ic_arrow" />-->
|
|
|
|
|
|
|
|
<!-- </RelativeLayout>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- </com.google.android.material.card.MaterialCardView>-->
|
|
|
|
|
|
|
|
<!-- </LinearLayout>-->
|
|
|
|
|
|
|
|
|
2022-05-10 22:05:51 +05:30
|
|
|
<!-- <TextView-->
|
|
|
|
<!-- android:id="@+id/tv_history"-->
|
|
|
|
<!-- android:layout_width="wrap_content"-->
|
|
|
|
<!-- android:layout_height="wrap_content"-->
|
|
|
|
<!-- android:layout_margin="25dp"-->
|
|
|
|
<!-- android:text="@string/history"-->
|
|
|
|
<!-- android:textSize="14sp"-->
|
|
|
|
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
|
|
|
<!-- app:layout_constraintTop_toBottomOf="@+id/outlinedTextField"-->
|
|
|
|
<!-- android:visibility="gone"/>-->
|
2022-05-09 22:10:51 +05:30
|
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/history_recycler"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-05-15 13:38:47 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/searchbar_holder"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:visibility="gone" />
|
2021-12-28 01:37:07 +05:30
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/search_recycler"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2022-05-15 17:24:13 +05:30
|
|
|
android:layout_margin="10dp"
|
2021-12-28 01:37:07 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-06-03 22:19:48 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/searchbar_holder" />
|
2021-12-28 01:37:07 +05:30
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|