62 lines
2.3 KiB
XML
62 lines
2.3 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"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="10dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_punish_icon"
|
|
android:layout_width="36dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginLeft="18dp"
|
|
android:src="@mipmap/cftz"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="234dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginTop="18dp"
|
|
android:layout_marginEnd="25dp"
|
|
android:background="@drawable/bg_bk_ffffff_555555_8dp"
|
|
android:orientation="vertical"
|
|
app:layout_constraintLeft_toRightOf="@id/iv_punish_icon"
|
|
app:layout_constraintTop_toTopOf="@id/iv_punish_icon">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_punish_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="9dp"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:text="标题"
|
|
android:textColor="@color/color_555555"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<View
|
|
android:id="@+id/view_punish_line"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0.4dp"
|
|
android:background="@color/color_525252" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_punish_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="9dp"
|
|
android:layout_marginTop="3dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:text="内容"
|
|
android:textColor="@color/color_555555"
|
|
android:textSize="13sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |