mac
2024-07-18 014d6eb06e74ac10932621f44ba40f93e3518c82
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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:id="@+id/station_status_cl"
    android:layout_width="90dp"
    android:layout_height="56dp">
 
    <LinearLayout
        android:id="@+id/parent_ll"
        android:layout_width="@dimen/dp_74"
        android:layout_height="match_parent"
        android:background="@drawable/station_status_no_ffffff"
        android:orientation="vertical"
        app:layout_constraintEnd_toStartOf="@+id/v"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <TextView
            android:id="@+id/station_total_tv"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_25"
            android:layout_marginTop="4dp"
            android:gravity="center"
            android:paddingTop="@dimen/dp_0"
            android:paddingBottom="@dimen/dp_0"
            android:text="0"
            android:textColor="@color/text_E6000000"
            android:textSize="@dimen/text_21"
            android:textStyle="bold" />
 
        <TextView
            android:id="@+id/station_title_tv"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_20"
            android:layout_marginTop="1dp"
            android:gravity="center"
            android:text="state"
            android:textColor="@color/text_66000000"
            android:textSize="@dimen/text_14" />
    </LinearLayout>
 
    <View
        android:id="@+id/v"
        android:layout_width="@dimen/dp_16"
        android:layout_height="match_parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
 
        />
 
 
</androidx.constraintlayout.widget.ConstraintLayout>