Skip to content
Snippets Groups Projects
activity_main.xml 924 B
Newer Older
  • Learn to ignore specific revisions
  • Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
        <androidx.fragment.app.FragmentContainerView
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="0dp"
            android:layout_height="0dp" app:navGraph="@navigation/nav_graph" app:defaultNavHost="true"
            android:id="@+id/fragment"
            app:layout_constraintTop_toTopOf="parent"
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
            app:layout_constraintStart_toStartOf="parent" />
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    </androidx.constraintlayout.widget.ConstraintLayout>