content_count_down.xml 913 B

12345678910111213141516171819
  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. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  7. <fragment
  8. android:id="@+id/nav_host_fragment_content_count_down"
  9. android:name="androidx.navigation.fragment.NavHostFragment"
  10. android:layout_width="0dp"
  11. android:layout_height="0dp"
  12. app:defaultNavHost="true"
  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. app:navGraph="@navigation/nav_graph" />
  18. </androidx.constraintlayout.widget.ConstraintLayout>