|
@@ -8,14 +8,17 @@
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:minHeight="?attr/actionBarSize">
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
- <FrameLayout
|
|
|
+ <LinearLayout
|
|
|
android:id="@+id/logo_container"
|
|
|
android:layout_width="48dp"
|
|
|
- android:layout_height="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:clickable="true"
|
|
|
+ android:focusable="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="4dp"
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
@@ -24,35 +27,43 @@
|
|
|
<ImageView
|
|
|
android:id="@+id/track_logo"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
+ android:layout_height="48dp"
|
|
|
tools:src="@drawable/tracker_mal" />
|
|
|
|
|
|
- </FrameLayout>
|
|
|
+ <ImageButton
|
|
|
+ android:id="@+id/track_set"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:background="?selectableItemBackgroundBorderless"
|
|
|
+ android:contentDescription="@string/action_edit"
|
|
|
+ android:padding="8dp"
|
|
|
+ app:srcCompat="@drawable/ic_create_white_24dp"
|
|
|
+ app:tint="@color/md_white_1000_50" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:id="@+id/track_details"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintEnd_toStartOf="@+id/track_set"
|
|
|
app:layout_constraintStart_toEndOf="@+id/logo_container"
|
|
|
- app:layout_constraintTop_toTopOf="parent">
|
|
|
+ app:layout_constraintEnd_toEndOf="parent">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:id="@+id/status_container"
|
|
|
- android:layout_width="0dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
android:background="?attr/selectable_list_drawable"
|
|
|
android:clickable="true"
|
|
|
android:focusable="true"
|
|
|
- android:orientation="vertical"
|
|
|
- android:paddingStart="16dp"
|
|
|
- android:paddingTop="16dp"
|
|
|
- android:paddingEnd="8dp"
|
|
|
- android:paddingBottom="16dp">
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:padding="16dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
<TextView
|
|
|
style="@style/TextAppearance.Regular.Body1"
|
|
@@ -65,85 +76,93 @@
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:maxLines="1"
|
|
|
tools:text="Reading" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/chapters_container"
|
|
|
+ <View
|
|
|
+ android:id="@+id/divider"
|
|
|
android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
- android:background="?attr/selectable_list_drawable"
|
|
|
- android:clickable="true"
|
|
|
- android:focusable="true"
|
|
|
- android:orientation="vertical"
|
|
|
- android:paddingStart="8dp"
|
|
|
- android:paddingTop="16dp"
|
|
|
- android:paddingEnd="8dp"
|
|
|
- android:paddingBottom="16dp">
|
|
|
-
|
|
|
- <TextView
|
|
|
- style="@style/TextAppearance.Regular.Body1"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/chapters" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/track_chapters"
|
|
|
- style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- tools:text="12/24" />
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:alpha="0.25"
|
|
|
+ android:background="?android:attr/textColorHint"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/status_container" />
|
|
|
|
|
|
<LinearLayout
|
|
|
- android:id="@+id/score_container"
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
- android:background="?attr/selectable_list_drawable"
|
|
|
- android:clickable="true"
|
|
|
- android:focusable="true"
|
|
|
- android:orientation="vertical"
|
|
|
- android:paddingStart="8dp"
|
|
|
- android:paddingTop="16dp"
|
|
|
- android:paddingEnd="16dp"
|
|
|
- android:paddingBottom="16dp">
|
|
|
-
|
|
|
- <TextView
|
|
|
- style="@style/TextAppearance.Regular.Body1"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/divider">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/chapters_container"
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="@string/score" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/track_score"
|
|
|
- style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
- android:layout_width="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="?attr/selectable_list_drawable"
|
|
|
+ android:clickable="true"
|
|
|
+ android:focusable="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:padding="16dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/TextAppearance.Regular.Body1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/chapters" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/track_chapters"
|
|
|
+ style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
+ android:gravity="end"
|
|
|
+ tools:text="12/24" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/score_container"
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="8dp"
|
|
|
- tools:text="10" />
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="?attr/selectable_list_drawable"
|
|
|
+ android:clickable="true"
|
|
|
+ android:focusable="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:padding="16dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/TextAppearance.Regular.Body1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/score" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/track_score"
|
|
|
+ style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
+ android:gravity="end"
|
|
|
+ tools:text="10" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <ImageButton
|
|
|
- android:id="@+id/track_set"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:background="?selectableItemBackgroundBorderless"
|
|
|
- android:contentDescription="@string/action_edit"
|
|
|
- android:padding="8dp"
|
|
|
- android:tint="?android:attr/textColorSecondary"
|
|
|
- app:layout_constraintBottom_toBottomOf="parent"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent"
|
|
|
- app:srcCompat="@drawable/ic_create_white_24dp" />
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|