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
<?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:layout_width="@dimen/dp_171"
    android:layout_height="@dimen/dp_44">
 
    <TextView
        android:id="@+id/data_tv"
        style="@style/Text20Style"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/dp_24"
        android:text="33333"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
 
    <TextView
        android:id="@+id/data_type_tv"
        style="@style/Text14Style"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/dp_17"
        android:layout_marginTop="3dp"
        android:text="kw.h"
        app:layout_constraintEnd_toEndOf="@+id/data_tv"
        app:layout_constraintStart_toStartOf="@+id/data_tv"
        app:layout_constraintTop_toBottomOf="@+id/data_tv" />
 
</androidx.constraintlayout.widget.ConstraintLayout>