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:layout_height="wrap_content" 9 android:orientation="horizontal"> 10 11 <TextView android:layout_width="0dp" 12 android:layout_height="wrap_content" 13 android:gravity="center" 14 android:text="@string/waypoint_differences" 15 android:layout_weight="1"/> 16 <TextView android:layout_width="0dp" 17 android:layout_height="wrap_content" 18 android:gravity="center" 19 android:id="@+id/tvWaypointResult" 20 android:layout_weight="1"/> 21 </LinearLayout> 22 23 <LinearLayout android:layout_width="match_parent" 24 android:layout_height="wrap_content" 25 android:paddingTop="10dp" 26 android:orientation="horizontal"> 27 28 <TextView android:layout_width="0dp" 29 android:gravity="center" 30 android:text="@string/path_differences" 31 android:layout_height="wrap_content" 32 android:layout_weight="1"/> 33 <TextView android:layout_width="0dp" 34 android:layout_height="wrap_content" 35 android:gravity="center" 36 android:id="@+id/tvPathResult" 37 android:layout_weight="1"/> 38 </LinearLayout> 39</LinearLayout>