70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dp_16"
|
|
android:layout_marginEnd="@dimen/dp_16"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="@dimen/dp_200"
|
|
android:layout_height="@dimen/dp_20"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
android:textSize="@dimen/sp_14"
|
|
android:textColor="@color/color_FF333333"
|
|
|
|
android:ellipsize="marquee"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:scrollHorizontally="true"
|
|
android:singleLine="true"
|
|
tools:text="每日签到"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/tv_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/dp_17"
|
|
app:layout_constraintTop_toBottomOf="@id/tv_name"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
android:textSize="@dimen/sp_12"
|
|
android:textColor="@color/color_FF999999"
|
|
tools:text="2025-5-27 16:43:09"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_jb"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/dp_24"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/im_ty"
|
|
android:textSize="@dimen/sp_16"
|
|
android:textColor="@color/color_ff2727"
|
|
tools:text="+10"
|
|
/>
|
|
<ImageView
|
|
android:id="@+id/im_ty"
|
|
android:layout_width="@dimen/dp_16"
|
|
android:layout_height="@dimen/dp_16"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginStart="@dimen/dp_1"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
tools:ignore="ContentDescription"
|
|
/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_1"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_time"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:background="#F1F2F3"
|
|
/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |