You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.0 KiB
73 lines
3.0 KiB
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout android:layout_width="match_parent"
|
||
|
android:paddingTop="10dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/waypoint_differences"
|
||
|
android:layout_weight="1"/>
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:gravity="center"
|
||
|
android:id="@+id/tvWaypointResult"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout android:layout_width="match_parent"
|
||
|
android:paddingTop="10dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/path_differences"
|
||
|
android:layout_weight="1"/>
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:gravity="center"
|
||
|
android:id="@+id/tvPathResult"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout android:layout_width="match_parent"
|
||
|
android:paddingTop="10dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/time"
|
||
|
android:layout_weight="1"/>
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:gravity="center"
|
||
|
android:id="@+id/tvTimeResult"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout android:layout_width="match_parent"
|
||
|
android:paddingTop="10dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/rotation_result"
|
||
|
android:layout_weight="1"/>
|
||
|
<TextView android:layout_width="0dp"
|
||
|
android:gravity="center"
|
||
|
android:id="@+id/tvRotationResult"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|