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/rings"
33                  android:layout_weight="1"/>
34        <TextView android:layout_width="0dp"
35                  android:gravity="center"
36                  android:id="@+id/tvRingsResult"
37                  android:layout_height="wrap_content"
38                  android:layout_weight="1"/>
39    </LinearLayout>
40</LinearLayout>