1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" android:layout_width="match_parent" 4 android:layout_height="match_parent"> 5 6 <LinearLayout android:layout_width="match_parent" 7 android:layout_height="wrap_content" 8 android:orientation="horizontal"> 9 10 <TextView android:layout_width="0dp" 11 android:layout_height="wrap_content" 12 android:gravity="center" 13 android:text="@string/waypoint_differences" 14 android:layout_weight="1"/> 15 <TextView android:layout_width="0dp" 16 android:layout_height="wrap_content" 17 android:gravity="center" 18 android:id="@+id/tvWaypointResult" 19 android:layout_weight="1"/> 20 </LinearLayout> 21 22 <LinearLayout android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:paddingTop="10dp" 25 android:orientation="horizontal"> 26 27 <TextView android:layout_width="0dp" 28 android:gravity="center" 29 android:text="@string/path_differences" 30 android:layout_height="wrap_content" 31 android:layout_weight="1"/> 32 <TextView android:layout_width="0dp" 33 android:layout_height="wrap_content" 34 android:gravity="center" 35 android:id="@+id/tvPathResult" 36 android:layout_weight="1"/> 37 </LinearLayout> 38</LinearLayout>