diff options
Diffstat (limited to 'benchmark/app/src/main/res/layout/main_layout.xml')
| -rw-r--r-- | benchmark/app/src/main/res/layout/main_layout.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/benchmark/app/src/main/res/layout/main_layout.xml b/benchmark/app/src/main/res/layout/main_layout.xml new file mode 100644 index 0000000..a399a07 --- /dev/null +++ b/benchmark/app/src/main/res/layout/main_layout.xml @@ -0,0 +1,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>
\ No newline at end of file |
