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