Home | History | Annotate | Download | only in layout
      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:paddingTop="10dp"
      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:gravity="center"
     18                   android:id="@+id/tvWaypointResult"
     19                   android:layout_height="wrap_content"
     20                   android:layout_weight="1"/>
     21     </LinearLayout>
     22 
     23     <LinearLayout android:layout_width="match_parent"
     24                   android:paddingTop="10dp"
     25                   android:layout_height="wrap_content"
     26                   android:orientation="horizontal">
     27 
     28         <TextView android:layout_width="0dp"
     29                   android:layout_height="wrap_content"
     30                   android:gravity="center"
     31                   android:text="@string/path_differences"
     32                   android:layout_weight="1"/>
     33         <TextView android:layout_width="0dp"
     34                   android:gravity="center"
     35                   android:id="@+id/tvPathResult"
     36                   android:layout_height="wrap_content"
     37                   android:layout_weight="1"/>
     38     </LinearLayout>
     39 
     40     <LinearLayout android:layout_width="match_parent"
     41                   android:paddingTop="10dp"
     42                   android:layout_height="wrap_content"
     43                   android:orientation="horizontal">
     44 
     45         <TextView android:layout_width="0dp"
     46                   android:layout_height="wrap_content"
     47                   android:gravity="center"
     48                   android:text="@string/time"
     49                   android:layout_weight="1"/>
     50         <TextView android:layout_width="0dp"
     51                   android:gravity="center"
     52                   android:id="@+id/tvTimeResult"
     53                   android:layout_height="wrap_content"
     54                   android:layout_weight="1"/>
     55     </LinearLayout>
     56 
     57     <LinearLayout android:layout_width="match_parent"
     58                   android:paddingTop="10dp"
     59                   android:layout_height="wrap_content"
     60                   android:orientation="horizontal">
     61 
     62         <TextView android:layout_width="0dp"
     63                   android:layout_height="wrap_content"
     64                   android:gravity="center"
     65                   android:text="@string/rotation_result"
     66                   android:layout_weight="1"/>
     67         <TextView android:layout_width="0dp"
     68                   android:gravity="center"
     69                   android:id="@+id/tvRotationResult"
     70                   android:layout_height="wrap_content"
     71                   android:layout_weight="1"/>
     72     </LinearLayout>
     73 </LinearLayout>