1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3              android:fitsSystemWindows="true"
4              android:orientation="vertical" android:layout_width="match_parent"
5              android:layout_height="match_parent">
6
7    <LinearLayout android:layout_width="match_parent"
8                  android:paddingTop="10dp"
9                  android:layout_height="wrap_content"
10                  android:orientation="horizontal">
11
12        <TextView android:layout_width="0dp"
13                  android:layout_height="wrap_content"
14                  android:gravity="center"
15                  android:text="@string/waypoint_differences"
16                  android:layout_weight="1"/>
17        <TextView android:layout_width="0dp"
18                  android:gravity="center"
19                  android:id="@+id/tvWaypointResult"
20                  android:layout_height="wrap_content"
21                  android:layout_weight="1"/>
22    </LinearLayout>
23
24    <LinearLayout android:layout_width="match_parent"
25                  android:paddingTop="10dp"
26                  android:layout_height="wrap_content"
27                  android:orientation="horizontal">
28
29        <TextView android:layout_width="0dp"
30                  android:layout_height="wrap_content"
31                  android:gravity="center"
32                  android:text="@string/path_differences"
33                  android:layout_weight="1"/>
34        <TextView android:layout_width="0dp"
35                  android:gravity="center"
36                  android:id="@+id/tvPathResult"
37                  android:layout_height="wrap_content"
38                  android:layout_weight="1"/>
39    </LinearLayout>
40
41    <LinearLayout android:layout_width="match_parent"
42                  android:paddingTop="10dp"
43                  android:layout_height="wrap_content"
44                  android:orientation="horizontal">
45
46        <TextView android:layout_width="0dp"
47                  android:layout_height="wrap_content"
48                  android:gravity="center"
49                  android:text="@string/time"
50                  android:layout_weight="1"/>
51        <TextView android:layout_width="0dp"
52                  android:gravity="center"
53                  android:id="@+id/tvTimeResult"
54                  android:layout_height="wrap_content"
55                  android:layout_weight="1"/>
56    </LinearLayout>
57
58    <LinearLayout android:layout_width="match_parent"
59                  android:paddingTop="10dp"
60                  android:layout_height="wrap_content"
61                  android:orientation="horizontal">
62
63        <TextView android:layout_width="0dp"
64                  android:layout_height="wrap_content"
65                  android:gravity="center"
66                  android:text="@string/rotation_result"
67                  android:layout_weight="1"/>
68        <TextView android:layout_width="0dp"
69                  android:gravity="center"
70                  android:id="@+id/tvRotationResult"
71                  android:layout_height="wrap_content"
72                  android:layout_weight="1"/>
73    </LinearLayout>
74</LinearLayout>