Sendet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

content_main.xml 958B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  8. <fragment
  9. android:id="@+id/nav_host_fragment"
  10. android:name="androidx.navigation.fragment.NavHostFragment"
  11. android:layout_width="0dp"
  12. android:layout_height="0dp"
  13. app:layout_constraintLeft_toLeftOf="parent"
  14. app:layout_constraintRight_toRightOf="parent"
  15. app:layout_constraintTop_toTopOf="parent"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. app:defaultNavHost="true"
  18. app:navGraph="@navigation/nav_graph"/>
  19. </androidx.constraintlayout.widget.ConstraintLayout>