156 lines
No EOL
6.4 KiB
XML
156 lines
No EOL
6.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_transparent"
|
|
android:clickable="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/main_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="@drawable/bg_bottom_menu_dark"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="12dp"
|
|
android:paddingTop="12dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/ruler_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginStart="16dp"
|
|
android:background="@null"
|
|
tools:src="@drawable/ic_action_ruler"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/up_down_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@null"
|
|
android:paddingEnd="16dp"
|
|
android:paddingStart="16dp"
|
|
tools:src="@drawable/ic_action_arrow_down"/>
|
|
|
|
<TextView
|
|
android:id="@+id/measurement_distance_text_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="4dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_toEndOf="@id/ruler_icon"
|
|
android:layout_toRightOf="@id/ruler_icon"
|
|
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
|
tools:text="724 m,"/>
|
|
|
|
<TextView
|
|
android:id="@+id/measurement_points_text_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/measurement_distance_text_view"
|
|
android:layout_toLeftOf="@id/up_down_button"
|
|
android:layout_toRightOf="@id/measurement_distance_text_view"
|
|
android:layout_toStartOf="@id/up_down_button"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
tools:text="points: 3"/>
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/points_list_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="180dp"
|
|
android:background="@color/ctx_menu_info_view_bg_dark"
|
|
android:visibility="gone">
|
|
|
|
<include layout="@layout/card_bottom_divider"/>
|
|
|
|
<ListView
|
|
android:id="@+id/measure_points_list_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="5dp"
|
|
android:layout_gravity="bottom"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/bg_shadow_onmap"/>
|
|
</FrameLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageButton
|
|
android:id="@+id/undo_point_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@null"
|
|
android:paddingEnd="16dp"
|
|
android:paddingStart="16dp"
|
|
tools:src="@drawable/ic_action_undo_dark"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/redo_point_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/undo_point_button"
|
|
android:layout_toRightOf="@id/undo_point_button"
|
|
android:background="@null"
|
|
android:paddingEnd="8dp"
|
|
android:paddingStart="8dp"
|
|
tools:src="@drawable/ic_action_redo_dark"/>
|
|
|
|
<Button
|
|
android:id="@+id/add_point_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@drawable/btn_round_blue"
|
|
android:drawableLeft="@drawable/ic_action_plus"
|
|
android:minHeight="36dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="@string/shared_string_add"
|
|
android:textColor="@color/color_white"/>
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |