Guest User

Untitled

a guest
Oct 9th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/md_divider_white">
  8.  
  9. <FrameLayout
  10. android:id="@+id/container"
  11. android:layout_width="0dp"
  12. android:layout_height="0dp"
  13. app:layout_constraintBottom_toBottomOf="parent"
  14. app:layout_constraintEnd_toEndOf="parent"
  15. app:layout_constraintStart_toStartOf="parent"
  16. app:layout_constraintTop_toTopOf="parent" />
  17.  
  18. <com.google.android.material.floatingactionbutton.FloatingActionButton
  19. android:id="@+id/fragmentReturnToDeviceLocationButton"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_marginEnd="16dp"
  23. android:layout_marginRight="16dp"
  24. android:layout_marginBottom="16dp"
  25. app:layout_constraintBottom_toBottomOf="parent"
  26. app:layout_constraintEnd_toEndOf="parent"
  27. app:srcCompat="@drawable/ic_my_location" />
  28.  
  29. </androidx.constraintlayout.widget.ConstraintLayout>
Add Comment
Please, Sign In to add comment