activity_init.xml 797 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto">
  4. <FrameLayout
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@drawable/bg_main"
  8. android:fitsSystemWindows="true">
  9. <androidx.fragment.app.FragmentContainerView
  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. android:padding="@dimen/iscs_space_4"
  15. app:defaultNavHost="true"
  16. app:navGraph="@navigation/nav_init" />
  17. </FrameLayout>
  18. </layout>