
* Remove 18+ extension if Anilist 18+ is off ~requested by @arif * Translation filter for extension(WIP) * Added a option to toggle fast forward suggested by arif * Added NFSW toggle to extension settings now it will be more easy rather then going to anilist to toggle it ~suggested by arif * Forgot to undo this * changed icons in extension setting * get rid of companion object (todo) * get rid of companion object (todo) --------- Co-authored-by: rebelonion <87634197+rebelonion@users.noreply.github.com>
320 lines
13 KiB
XML
320 lines
13 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:id="@+id/animeContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="-16dp"
|
|
android:layout_marginEnd="-16dp"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/animeTrendingContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/animeTrendingViewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="464dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/animeTitleContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="32dp"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/animeSearchBar"
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
|
|
android:layout_width="0dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_weight="1"
|
|
android:hint="@string/anime"
|
|
android:textColorHint="@color/bg_opp"
|
|
android:transitionName="@string/search"
|
|
app:boxBackgroundColor="?attr/colorPrimaryContainer"
|
|
app:boxCornerRadiusBottomEnd="28dp"
|
|
app:boxCornerRadiusBottomStart="28dp"
|
|
app:boxCornerRadiusTopEnd="28dp"
|
|
app:boxCornerRadiusTopStart="28dp"
|
|
app:endIconDrawable="@drawable/ic_round_search_24"
|
|
app:endIconTint="@color/bg_opp"
|
|
app:boxStrokeColor="@color/text_input_layout_stroke_color"
|
|
app:hintAnimationEnabled="true">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/animeSearchBarText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:focusable="false"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:inputType="none"
|
|
android:padding="8dp"
|
|
android:textSize="14sp"
|
|
tools:ignore="LabelFor,TextContrastCheck" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/animeUserAvatarContainer"
|
|
android:layout_width="52dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="4dp"
|
|
app:cardBackgroundColor="?attr/colorPrimaryContainer"
|
|
app:strokeColor="@color/text_input_layout_stroke_color"
|
|
app:cardCornerRadius="26dp">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/animeUserAvatar"
|
|
android:layout_width="52dp"
|
|
android:layout_height="52dp"
|
|
android:scaleType="center"
|
|
android:tint="@color/bg_opp"
|
|
app:srcCompat="@drawable/ic_round_settings_24"
|
|
tools:ignore="ContentDescription,ImageContrastCheck" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/animeTrendingProgressBar"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="64dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
<HorizontalScrollView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="32dp"
|
|
android:scrollbarSize="0dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/animeSeasonsCont"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/animeThisSeason"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="8dp"
|
|
android:text="@string/this_season"
|
|
app:chipStrokeColor="?attr/colorPrimaryContainer"
|
|
android:textAppearance="@style/Suffix" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/animeNextSeason"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="8dp"
|
|
android:text="@string/next_season"
|
|
app:chipStrokeColor="?attr/colorPrimaryContainer"
|
|
android:textAppearance="@style/Suffix" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/animePreviousSeason"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/previous_season"
|
|
app:chipStrokeColor="?attr/colorPrimaryContainer"
|
|
android:textAppearance="@style/Suffix" />
|
|
|
|
|
|
</LinearLayout>
|
|
</HorizontalScrollView>
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/animeListContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/animeGenre"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:layout_margin="8dp"
|
|
app:cardCornerRadius="16dp"
|
|
app:layout_constrainedWidth="true"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/animeCalendar"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintWidth_max="256dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/animeGenreImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription"
|
|
tools:src="@tools:sample/backgrounds/scenic" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:alpha="0.75"
|
|
android:background="@color/bg_black" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:text="@string/genres"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/bg_white"
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
android:layout_width="64dp"
|
|
android:layout_height="2dp"
|
|
android:layout_gravity="center"
|
|
android:background="?attr/colorPrimary" />
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/animeCalendar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:layout_margin="8dp"
|
|
android:layout_marginBottom="16dp"
|
|
app:cardCornerRadius="16dp"
|
|
app:layout_constrainedWidth="true"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/animeGenre"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintWidth_max="256dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/animeCalendarImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription"
|
|
tools:src="@tools:sample/backgrounds/scenic" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:alpha="0.75"
|
|
android:background="@color/bg_black" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:text="@string/release_calendar"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/bg_white"
|
|
android:textSize="16sp" />
|
|
|
|
<View
|
|
android:layout_width="64dp"
|
|
android:layout_height="2dp"
|
|
android:layout_gravity="center"
|
|
android:background="?attr/colorPrimary" />
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/animeRecently"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:padding="8dp"
|
|
android:text="@string/updated"
|
|
android:textSize="16sp"
|
|
android:visibility="invisible"
|
|
tools:visibility="visible" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="250dp">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/animeUpdatedProgressBar"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center" />
|
|
|
|
<ani.dantotsu.FadingEdgeRecyclerView
|
|
android:id="@+id/animeUpdatedRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="250dp"
|
|
android:clipToPadding="false"
|
|
android:nestedScrollingEnabled="true"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:requiresFadingEdge="horizontal"
|
|
tools:itemCount="4"
|
|
tools:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
tools:listitem="@layout/item_media_compact"
|
|
tools:orientation="horizontal" />
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/animePopular"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:orientation="horizontal"
|
|
android:visibility="invisible">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:padding="8dp"
|
|
android:text="@string/popular_anime"
|
|
android:textSize="16sp" />
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
android:id="@+id/animeIncludeList"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="true"
|
|
android:text="@string/include_media_in_list" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|