23 lines
1.0 KiB
XML
23 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/layoutHomeMap"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:name="com.google.android.gms.maps.SupportMapFragment"
|
|
android:id="@+id/map"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:cameraZoom="10"/>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="20dp"
|
|
android:layout_margin="@dimen/default_padding"
|
|
android:src="@drawable/ic_adif_logo"
|
|
android:scaleType="centerInside"
|
|
android:adjustViewBounds="true"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tint="@color/colorAccentDark"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|