lmw
2025-08-22 1bc46a8c502b8e9db6ee901dc003d9780a6c6fed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?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:layout_marginTop="1dp"
    android:orientation="vertical"
    android:background="@color/white">
 
    <TextView
        android:id="@+id/tv_title_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginStart="12dp"
        android:layout_marginTop="@dimen/dp_10"
        android:gravity="center"
        android:text="发车时间约"
        android:textColor="#ff27282d"
        android:textSize="12sp"
        android:textStyle="bold" />
 
    <TextView
        android:id="@+id/tv_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginBottom="17dp"
        android:layout_marginStart="12dp"
        android:layout_marginTop="@dimen/dp_10"
        android:gravity="center"
        android:text="发车时间约"
        android:textColor="#ff27282d"
        android:textSize="12sp"
        android:textStyle="bold" />
 
</LinearLayout>