feat: Added anime clear progress (#531)

* feat: Added anime clear progress

* more stuff added
This commit is contained in:
Ankit Grai 2024-11-20 23:27:03 +05:30 committed by GitHub
parent ff3372754a
commit d01e1c89e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 142 additions and 9 deletions

View file

@ -292,5 +292,53 @@
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/mediaProgressResetContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:orientation="horizontal">
<LinearLayout
android:layout_width="265dp"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.58"
android:fontFamily="@font/poppins_bold"
android:text="@string/reset" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/reset_progress_def"
android:fontFamily="@font/poppins_bold"
android:text=""
android:textColor="?attr/colorSecondary"
tools:ignore="TextContrastCheck" />
</LinearLayout>
<LinearLayout
android:layout_width="48dp"
android:layout_height="48dp">
<ImageView
android:id="@+id/resetProgress"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_gravity="center|center_horizontal"
android:layout_marginStart="12dp"
android:background="?android:attr/selectableItemBackground"
app:srcCompat="@drawable/ic_delete"
app:tint="?attr/colorOnBackground"
tools:ignore="ContentDescription,ImageContrastCheck" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</FrameLayout>