Meshtastic-Android/app/src/main/res/layout/map_view.xml

16 lines
638 B
XML
Raw Normal View History

2020-03-11 18:13:44 -07:00
<?xml version="1.0" encoding="utf-8"?>
2022-02-17 10:38:33 -05:00
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2020-03-11 18:13:44 -07:00
android:layout_width="match_parent"
2022-02-17 10:38:33 -05:00
android:layout_height="match_parent">
<org.osmdroid.views.MapView
android:id="@+id/map"
2022-02-17 10:38:33 -05:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="110dp"
tools:layout_editor_absoluteY="16dp" />
2022-02-17 15:22:46 -05:00
2022-02-17 10:38:33 -05:00
</androidx.constraintlayout.widget.ConstraintLayout>