Skip to content
Snippets Groups Projects
Commit 0ced2ebc authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Renamed PlaceholderFragment -> SplashFragment

parent 168d9b81
No related branches found
No related tags found
No related merge requests found
package io.xxlabs.messenger.main.ui
class MainFragment {
}
\ No newline at end of file
package io.xxlabs.messenger.main.ui
import androidx.fragment.app.Fragment
/**
* Placeholder screen during app initialization.
*/
class SplashScreenFragment : Fragment() {
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_splash_screen" />
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android" <navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph" android:id="@+id/nav_graph"
app:startDestination="@id/coldStartActivity"> app:startDestination="@id/splashScreenFragment">
<include app:graph="@navigation/nav_home" /> <include app:graph="@navigation/nav_home" />
<include app:graph="@navigation/nav_registration" /> <include app:graph="@navigation/nav_registration" />
<activity <fragment
android:id="@+id/coldStartActivity" android:id="@+id/splashScreenFragment"
android:name="io.xxlabs.messenger.main.ui.MainActivity" android:name="io.xxlabs.messenger.main.ui.SplashScreenFragment"
android:label="ColdStartActivity" /> android:label="SplashScreenFragment"
tools:layout="@layout/fragment_splash_screen" />
</navigation> </navigation>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment