mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-16 23:42:49 +01:00
cb71d44024
* Tracking sheet and search visual adjustments * Remove track item divider * Add start margin to "add tracking" button * Fix track search dialog crash when no item chosen * Show "remove" action only when track item is previously set * Remove placeholder for total chapters * Cleanups * Add track search error/empty result message * Make track search dialog fullscreen * Use AutofitRecyclerView for track search dialog * Fix text input overlapping * Run track search from IME action instead * Remove deprecated method * Reformat * Set track search error message on the placeholder * Use payload to notify track search item change * Fix track search action icon tint color
140 lines
6.4 KiB
XML
140 lines
6.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView 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/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:checkable="true"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.MaterialCardView.Tracker">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/linearLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/track_search_cover"
|
|
android:layout_width="130dp"
|
|
android:layout_height="180dp"
|
|
android:contentDescription="@string/description_cover"
|
|
android:scaleType="centerCrop"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@mipmap/ic_launcher" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="36dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textAppearance="?attr/textAppearanceHeadline6"
|
|
android:textSize="17sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/track_search_cover"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="@string/app_name" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_type"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:text="@string/track_type"
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
app:layout_constraintStart_toStartOf="@+id/track_search_title"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_title" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_type_result"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:maxLines="1"
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/track_search_type"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_title"
|
|
tools:text="Manga" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_start"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:text="@string/track_start_date"
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
app:layout_constraintStart_toStartOf="@+id/track_search_type"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_type" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_start_result"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/track_search_start"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_type"
|
|
tools:text="2018-10-01" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:text="@string/track_status"
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
app:layout_constraintStart_toStartOf="@+id/track_search_start"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_start" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_status_result"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/track_search_status"
|
|
app:layout_constraintTop_toBottomOf="@id/track_search_start"
|
|
tools:text="Ongoing" />
|
|
|
|
<TextView
|
|
android:id="@+id/track_search_summary"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:textAppearance="?attr/textAppearanceCaption"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="@+id/track_search_status"
|
|
app:layout_constraintTop_toBottomOf="@+id/track_search_status"
|
|
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas condimentum et turpis ut sollicitudin. Donec tellus dolor, rhoncus a mattis eget, tempor quis augue. Fusce eleifend dignissim turpis a molestie. Praesent tincidunt, risus sed egestas fringilla, urna orci ultrices libero, id iaculis sem lorem placerat lacus." />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|