mac
2024-04-26 705006fe0c1187ace53ee6505f71ba98fe4b44e6
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
<?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="74dp"
    android:layout_height="56dp"
    android:background="@drawable/station_status_no_ffffff">
 
    <TextView
        android:id="@+id/station_status_tv"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/dp_25"
        android:layout_marginTop="7dp"
        android:text="99"
        android:textColor="@color/text_90000000"
        android:textSize="@dimen/text_14"
        android:textStyle="bold"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
 
    <TextView
        android:id="@+id/station_status_number_tv"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/dp_17"
        android:layout_marginTop="1dp"
        android:text="state"
        android:textColor="@color/text_40000000"
        android:textSize="@dimen/text_14"
        app:layout_constraintEnd_toEndOf="@+id/station_status_tv"
        app:layout_constraintStart_toStartOf="@+id/station_status_tv"
        app:layout_constraintTop_toBottomOf="@+id/station_status_tv" />
 
</androidx.constraintlayout.widget.ConstraintLayout>