0
0

content_main.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  8. android:focusable="true"
  9. android:focusableInTouchMode="true">
  10. <fragment
  11. android:id="@+id/nav_host_fragment_content_main"
  12. android:name="androidx.navigation.fragment.NavHostFragment"
  13. android:layout_width="0dp"
  14. android:layout_height="0dp"
  15. app:defaultNavHost="true"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. app:layout_constraintHorizontal_bias="0.0"
  18. app:layout_constraintLeft_toLeftOf="parent"
  19. app:layout_constraintRight_toRightOf="parent"
  20. app:layout_constraintTop_toTopOf="parent"
  21. app:layout_constraintVertical_bias="0.0"
  22. app:navGraph="@navigation/nav_graph" />
  23. <ImageView
  24. android:id="@+id/imageView"
  25. android:layout_width="320dp"
  26. android:layout_height="260dp"
  27. app:layout_constraintEnd_toEndOf="parent"
  28. app:layout_constraintHorizontal_bias="0.0"
  29. app:layout_constraintStart_toStartOf="parent"
  30. app:srcCompat="@drawable/top_image"
  31. tools:ignore="MissingConstraints"
  32. tools:layout_editor_absoluteY="0dp" />
  33. </androidx.constraintlayout.widget.ConstraintLayout>