blob: a399a0734252952fddfa735f648a377a5839d444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root_layout"
android:gravity="bottom">
<org.osmdroid.views.MapView android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintEnd_toEndOf="parent">
</org.osmdroid.views.MapView>
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:layout_alignParentEnd="true" android:layout_marginEnd="10dp"
android:layout_centerVertical="true">
<ImageButton
android:contentDescription="@string/button_content" android:src="@drawable/plus_5345954"
android:layout_width="50dp"
android:layout_height="50dp" android:id="@+id/plusBtn"
android:layout_gravity="end|bottom"/>
<ImageButton
android:contentDescription="@string/button_content" android:src="@drawable/target"
android:layout_width="50dp"
android:layout_height="50dp" android:id="@+id/posBtn"
android:layout_gravity="end|bottom"/>
</LinearLayout>
<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/listWrapper">
<include layout="@layout/bottom_sheet_dialog"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</RelativeLayout>
|