lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content"
    android:background="@color/white"
    android:orientation="horizontal"
    android:layout_height="wrap_content">
 
    <TextView
        android:id="@+id/tv_now_day"
        android:layout_width="75dp"
        android:gravity="center"
        android:layout_height="40dp"
        android:text="7月4日"
        android:textColor="@color/main_item_orange"
        android:textSize="15sp"
        />
 
    <View
        android:layout_width="1px"
        android:layout_marginTop="4dp"
        android:layout_marginBottom="4dp"
        android:layout_height="match_parent"
        android:background="@color/select_gray_line"/>
 
</LinearLayout>