65 lines
No EOL
2.4 KiB
XML
65 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
android:id="@+id/move_marker_bottom_sheet"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="?attr/bottom_menu_view_bg"
|
|
android:clickable="true"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:src="@drawable/ic_action_photo_dark"/>
|
|
|
|
<LinearLayout
|
|
android:layout_weight="1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
style="@style/TextAppearance.ContextMenuTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:text="@string/move_marker_bottom_sheet_title"/>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
style="@style/TextAppearance.ContextMenuSubtitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
tools:text="Lat: 50.45375 Lon: 30.48693"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
android:id="@+id/apply_button"
|
|
style="@style/Widget.AppCompat.Button.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/shared_string_apply"/>
|
|
|
|
<android.support.v7.widget.AppCompatButton
|
|
android:id="@+id/cancel_button"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/shared_string_cancel"/>
|
|
</LinearLayout> |