58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/data_area"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.5"
|
|
android:orientation="vertical"
|
|
tools:layout_width="match_parent">
|
|
|
|
<include layout="@layout/coordinate_input_data_area"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
<View
|
|
android:id="@+id/keyboard_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/keyboard_controls_divider"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp">
|
|
|
|
<android.support.v7.widget.AppCompatTextView
|
|
android:id="@+id/add_marker_button"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:text="@string/shared_string_add"
|
|
android:textAllCaps="true"
|
|
android:textColor="@color/keyboard_item_button_text_color"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/keyboard_controls_divider"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/show_hide_keyboard_icon"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:scaleType="center"
|
|
tools:src="@drawable/ic_action_arrow_down"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|