修复闹钟不自动播放问题

This commit is contained in:
2022-10-24 17:45:22 +08:00
parent 1f34c0a36e
commit 15e9854c48
9 changed files with 49 additions and 23 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -55,7 +55,7 @@
app:layout_constraintStart_toStartOf="parent">
<ImageView
android:id="@+id/imageView"
android:id="@+id/iv_cover"
android:layout_width="32dp"
android:layout_height="32dp"
android:adjustViewBounds="true"
@@ -72,9 +72,9 @@
android:text="位置"
android:textColor="@color/white"
android:textSize="@dimen/sp_18"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
app:layout_constraintStart_toEndOf="@+id/imageView"
app:layout_constraintTop_toTopOf="@+id/imageView" />
app:layout_constraintBottom_toBottomOf="@+id/iv_cover"
app:layout_constraintStart_toEndOf="@+id/iv_cover"
app:layout_constraintTop_toTopOf="@+id/iv_cover" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -54,7 +54,7 @@
app:layout_constraintStart_toStartOf="parent">
<ImageView
android:id="@+id/imageView"
android:id="@+id/iv_cover"
android:layout_width="32dp"
android:layout_height="32dp"
android:adjustViewBounds="true"
@@ -71,9 +71,9 @@
android:text="位置"
android:textColor="@color/white"
android:textSize="@dimen/sp_18"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
app:layout_constraintStart_toEndOf="@+id/imageView"
app:layout_constraintTop_toTopOf="@+id/imageView" />
app:layout_constraintBottom_toBottomOf="@+id/iv_cover"
app:layout_constraintStart_toEndOf="@+id/iv_cover"
app:layout_constraintTop_toTopOf="@+id/iv_cover" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -64,7 +64,7 @@
android:layout_height="match_parent" />
<ImageView
android:id="@+id/imageView"
android:id="@+id/iv_cover"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -30,6 +30,14 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_finish"
android:layout_width="@dimen/dp_16"
android:layout_height="@dimen/dp_16"
android:src="@drawable/finished_icon"
app:layout_constraintEnd_toEndOf="@+id/cl_vp"
app:layout_constraintTop_toTopOf="@+id/tv_time" />
<TextView
android:id="@+id/tv_remind_type"
android:layout_width="wrap_content"
@@ -128,7 +136,7 @@
app:radius="16dp" />
<ImageView
android:id="@+id/imageView"
android:id="@+id/iv_cover"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"