You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="16dp">
|
|
|
|
<!-- 左侧:时间轴线和圆点 -->
|
|
<LinearLayout
|
|
android:layout_width="24dp"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 圆点 -->
|
|
<View
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp"
|
|
android:background="@drawable/shape_circle_blue" />
|
|
|
|
<!-- 竖线 (默认显示,代码中会控制最后一条隐藏) -->
|
|
<View
|
|
android:id="@+id/view_line"
|
|
android:layout_width="2dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginTop="4dp"
|
|
android:background="#E0E0E0" />
|
|
</LinearLayout>
|
|
|
|
<!-- 右侧:内容区域 -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingStart="8dp">
|
|
|
|
<!-- 时间 -->
|
|
<TextView
|
|
android:id="@+id/tv_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="2026-04-20 12:23:28"
|
|
android:textColor="#999999"
|
|
android:textSize="13sp" />
|
|
|
|
<!-- 标题 (加粗) -->
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:text="轮胎安装: 赵宁波"
|
|
android:textColor="#333333"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold" />
|
|
|
|
<!-- 详情 -->
|
|
<TextView
|
|
android:id="@+id/tv_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:text="车辆: 粤B08499D | 轮位: 右外轮"
|
|
android:textColor="#666666"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |