wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/cycling_data_speed"
            android:textSize="@dimen/um25_value_text_size"
            android:layout_marginTop="100dp"
            android:gravity="center"
            android:textColor="@color/primary_dark"
            android:text="-"/>
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/cycling_data_trip_distance"
            android:textSize="@dimen/um25_value_text_size"
            android:layout_marginTop="100dp"
            android:gravity="center"
            android:textColor="@color/primary_dark"
            android:text="-"/>
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="@dimen/um25_value_text_size_small"
            android:gravity="center"
            android:textColor="@color/secondarytext"
            android:text="Long press to zero"/>
 
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/cycling_data_total_distance"
            android:textSize="@dimen/um25_value_text_size_small"
            android:layout_marginTop="100dp"
            android:gravity="center"
            android:textColor="@color/secondarytext"
            android:text="-"/>
 
    </LinearLayout>
 
</androidx.constraintlayout.widget.ConstraintLayout>