72 lines
2.7 KiB
XML
72 lines
2.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<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:layout_height="wrap_content">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="30dp"
|
||
|
android:layout_height="30dp"
|
||
|
android:layout_marginStart="21dp"
|
||
|
android:layout_marginTop="13dp"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:srcCompat="@mipmap/diamond" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/linearLayout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:layout_marginBottom="-5dp"
|
||
|
android:orientation="vertical"
|
||
|
app:layout_constraintBottom_toBottomOf="@+id/icon"
|
||
|
app:layout_constraintStart_toEndOf="@+id/icon"
|
||
|
app:layout_constraintTop_toTopOf="@+id/icon">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ellipsize="marquee"
|
||
|
android:focusable="true"
|
||
|
android:focusableInTouchMode="true"
|
||
|
android:marqueeRepeatLimit="marquee_forever"
|
||
|
android:maxEms="13"
|
||
|
android:singleLine="true"
|
||
|
android:text="攢人氣紅包 - 测试5.3版主播1的直播間123123123123"
|
||
|
android:textColor="#000000"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/time"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="TextView"
|
||
|
android:textColor="#90000000"
|
||
|
android:textSize="12sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/money"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="20dp"
|
||
|
android:layout_marginEnd="26dp"
|
||
|
android:text="TextView"
|
||
|
android:textColor="#000000"
|
||
|
android:textSize="14sp"
|
||
|
android:textStyle="bold"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
<View
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="1dp"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:background="?android:attr/listDivider"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="@+id/linearLayout"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|