Advertisement
TiyasAria

MainActivity

Jan 7th, 2022
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  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.    xmlns:tools="http://schemas.android.com/tools"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:padding="@dimen/_5dp"
  9.    tools:context=".MainActivity">
  10.  
  11.  
  12.     <fragment
  13.        android:id="@+id/nav_host_fragment"
  14.        android:name="androidx.navigation.fragment.NavHostFragment"
  15.        android:layout_width="match_parent"
  16.        android:layout_height="match_parent"
  17.        app:defaultNavHost="true"
  18.        app:layout_constraintBottom_toBottomOf="parent"
  19.        app:layout_constraintEnd_toEndOf="parent"
  20.        app:layout_constraintStart_toStartOf="parent"
  21.        app:layout_constraintTop_toTopOf="parent"
  22.        app:navGraph="@navigation/my_nav" />
  23.  
  24. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement