VancedManager/app/src/main/res/layout/activity_welcome.xml

16 lines
665 B
XML
Raw Normal View History

2020-10-31 19:45:39 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-11-23 20:33:24 +00:00
<RelativeLayout 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=".ui.WelcomeActivity">
2020-10-31 19:45:39 +00:00
2020-11-23 20:33:24 +00:00
<fragment
android:id="@+id/welcome_navhost"
android:name="androidx.navigation.fragment.NavHostFragment"
2020-10-31 19:45:39 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-11-23 20:33:24 +00:00
app:defaultNavHost="true"
app:navGraph="@navigation/welcome_navigation" />
</RelativeLayout>