9196bc1772f0182178b5dce96fef970580a112e4.svn-base 957 B

1234567891011121314151617181920
  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. tools:showIn="@layout/app_bar_main">
  9. <fragment
  10. android:id="@+id/nav_host_fragment"
  11. android:name="androidx.navigation.fragment.NavHostFragment"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. app:defaultNavHost="true"
  15. app:layout_constraintLeft_toLeftOf="parent"
  16. app:layout_constraintRight_toRightOf="parent"
  17. app:layout_constraintTop_toTopOf="parent"
  18. app:navGraph="@navigation/mobile_navigation" />
  19. </androidx.constraintlayout.widget.ConstraintLayout>