修改16号提出的bug

This commit is contained in:
md
2021-08-16 13:02:22 +08:00
parent 6ba575d0cf
commit 428fdcf70b
8 changed files with 28 additions and 15 deletions

View File

@@ -25,6 +25,10 @@
app:layout_constraintBottom_toBottomOf="@id/iv_tas_explain"
app:layout_constraintLeft_toRightOf="@id/iv_tas_explain"
android:layout_marginLeft="10dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
app:layout_constraintBottom_toBottomOf="parent"
android:background="#C0BFBF"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -1,38 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="?android:attr/selectableItemBackground"
android:layout_height="100dp">
android:layout_height="100dp"
android:background="?android:attr/selectableItemBackground">
<TextView
android:id="@+id/tv_title"
style="@style/text_style_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/text_style_title"
android:text="标题"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_dest"
style="@style/text_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="标题"
style="@style/text_style"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@+id/tv_title"
app:layout_constraintTop_toBottomOf="@+id/tv_title" />
<TextView
android:id="@+id/tv_time"
style="@style/text_style_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="少时诵诗书所所"
android:layout_marginRight="15dp"
style="@style/text_style_time"
android:text="少时诵诗书所所"
app:layout_constraintBottom_toBottomOf="@+id/tv_title"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/tv_title" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#C0BFBF"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>