Instantly share code, notes, and snippets.
Created
February 28, 2024 17:16
-
Star
0
(0)
You must be signed in to star a gist -
Fork
0
(0)
You must be signed in to fork a gist
-
Save SurajBahadur/39c21d4e030e131ef1ffcb51423ecef7 to your computer and use it in GitHub Desktop.
dtm nav graph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<navigation xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:id="@+id/dtmNavigation" | |
app:startDestination="@id/chooseOption"> | |
<fragment | |
android:id="@+id/splash" | |
android:name="com.dtm.views.splash.SplashFragment" | |
android:label="Splash"> | |
<action | |
android:id="@+id/action_splash_to_home_profile" | |
app:destination="@id/homeProfile" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_splash_to_dashboard" | |
app:destination="@id/dashboard" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_splash_to_matches" | |
app:destination="@id/your_matches" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/splash" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/chooseOption" | |
android:name="com.dtm.views.chooseOption.ChooseOptionFragment" | |
android:label="chooseOption"> | |
<action | |
android:id="@+id/action_option_to_signUp" | |
app:destination="@id/signUpNumber" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_choose_to_home_profile" | |
app:destination="@id/homeProfile" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_choose_to_dashboard" | |
app:destination="@id/dashboard" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_option_to_login" | |
app:destination="@id/login" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_choose_to_selection" | |
app:destination="@id/profileSelection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_choose_to_kids_mind" | |
app:destination="@id/kidsOnMind" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_choose_to_interests" | |
app:destination="@id/chooseInterest" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_choose_to_letUsKnowYou" | |
app:destination="@id/letUsKnowYou" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/profileSelection" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_choose_to_find_match" | |
app:destination="@id/findYourMatch" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/login" | |
android:name="com.dtm.views.login.Login" | |
android:label="login"> | |
<action | |
android:id="@+id/action_login_to_signUp" | |
app:destination="@id/signUpNumber" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_login_to_recover" | |
app:destination="@id/recoverAccount" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_login_to_home_profile" | |
app:destination="@id/homeProfile" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_dashboard" | |
app:destination="@id/dashboard" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_selection" | |
app:destination="@id/profileSelection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_demo" | |
app:destination="@id/imageCollection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_let_us_know" | |
app:destination="@id/letUsKnowYou" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_find_match" | |
app:destination="@id/findYourMatch" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_kids_mind" | |
app:destination="@id/kidsOnMind" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_interests" | |
app:destination="@id/chooseInterest" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_pic_verify" | |
app:destination="@id/verifyIdentity" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_login_to_subscription" | |
app:destination="@id/subscriptionPlans" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/login" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/dummy" | |
app:destination="@id/findYourMatch" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
</fragment> | |
<fragment | |
android:id="@+id/recoverAccount" | |
android:name="com.dtm.views.recoverAccount.RecoverAccount" | |
android:label="recoverAccount"> | |
<action | |
android:id="@+id/action_recover_to_check" | |
app:destination="@id/checkRecover" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
</fragment> | |
<fragment | |
android:id="@+id/checkRecover" | |
android:name="com.dtm.views.checkRecover.CheckRecover" | |
android:label="checkRecover"> | |
<action | |
android:id="@+id/action_check_to_recover" | |
app:destination="@id/recoverAccount" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/recoverAccount" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/signUpNumber" | |
android:name="com.dtm.views.signUpNumber.SignUpNumberFragment" | |
android:label="signUpNumber"> | |
<action | |
android:id="@+id/action_signUp_to_verify" | |
app:destination="@id/verifyNumber" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
</fragment> | |
<fragment | |
android:id="@+id/verifyNumber" | |
android:name="com.dtm.views.verifyNumber.VerifyNumberFragment" | |
android:label="verifyNumber"> | |
<action | |
android:id="@+id/action_verify_to_secure" | |
app:destination="@id/secureAccount" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/verifyNumber" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_verify_to_sign_up" | |
app:destination="@id/signUpNumber" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/verifyNumber" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_verify_to_profile_pic_selection" | |
app:destination="@id/profileSelection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/verifyNumber" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/secureAccount" | |
android:name="com.dtm.views.secureAccount.SecureAccountFragment" | |
android:label="secureAccount"> | |
<action | |
android:id="@+id/action_secure_to_selection" | |
app:destination="@id/profileSelection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/secureAccount" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/profileSelection" | |
android:name="com.dtm.views.profileSelection.ProfileSelectionFragment" | |
android:label="profileSelection"> | |
<action | |
android:id="@+id/action_selection_to_collection" | |
app:destination="@id/imageCollection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_selection_to_letUsKnowYou" | |
app:destination="@id/letUsKnowYou" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/profileSelection" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/imageCollection" | |
android:name="com.dtm.views.imageCollection.ImageCollection" | |
android:label="imageCollection"> | |
<action | |
android:id="@+id/action_collection_to_selection" | |
app:destination="@id/profileSelection" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
app:popUpTo="@id/profileSelection" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_collection_to_edit" | |
app:destination="@id/editProfile" | |
app:popUpTo="@id/editProfile" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_collection_to_crop" | |
app:destination="@id/cropImage" | |
app:popUpTo="@id/imageCollection" | |
app:popUpToInclusive="true" /> | |
<action | |
android:id="@+id/action_collection_to_show_selection" | |
app:destination="@id/camera_selection" | |
app:popUpTo="@id/imageCollection" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/letUsKnowYou" | |
android:name="com.dtm.views.letUsKnowYou.LetUsKnowYou" | |
android:label="letUsKnowYou"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_letUs_to_find" | |
app:destination="@id/findYourMatch" | |
app:popUpTo="@id/letUsKnowYou" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/findYourMatch" | |
android:name="com.dtm.views.findYourMatch.FindYourMatch" | |
android:label="findYourMatch"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_match_to_kids" | |
app:destination="@id/kidsOnMind" | |
app:popUpTo="@id/findYourMatch" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/kidsOnMind" | |
android:name="com.dtm.views.kidsOnMind.KidsOnMind" | |
android:label="kidsOnMind"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_Kids_to_interest" | |
app:destination="@id/chooseInterest" | |
app:popUpTo="@id/kidsOnMind" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/chooseInterest" | |
android:name="com.dtm.views.chooseInterests.ChooseInterests" | |
android:label="chooseInterest"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_interest_to_verify" | |
app:destination="@id/verifyIdentity" | |
app:popUpTo="@id/chooseInterest" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/verifyIdentity" | |
android:name="com.dtm.views.verifyIdentity.VerifyIdentity" | |
android:label="verifyIdentity"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_verify_to_plans" | |
app:destination="@id/subscriptionPlans" | |
app:popUpTo="@id/verifyIdentity" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/subscriptionPlans" | |
android:name="com.dtm.views.subscriptionPlans.SubscriptionPlans" | |
android:label="subscriptionPlans"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_plans_to_pay" | |
app:destination="@id/subscriptionPayment" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_plans_to_splash" | |
app:destination="@id/splash" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/subscriptionPayment" | |
android:name="com.dtm.views.subscriptionPayment.SubscriptionPayment" | |
android:label="subscriptionPayment"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_pay_to_splash" | |
app:destination="@id/splash" /> | |
</fragment> | |
<fragment | |
android:id="@+id/homeProfile" | |
android:name="com.dtm.views.homeProfile.HomeProfile" | |
android:label="homeProfile"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_setting" | |
app:destination="@id/settings" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_dashboard" | |
app:destination="@id/dashboard" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_flirting_tune_in" | |
app:destination="@id/flirting_tune_in" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_hot_seat_tune_in" | |
app:destination="@id/hot_seat_tune_in" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_event_learn" | |
app:destination="@id/eventLearnMore" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_event_detail" | |
app:destination="@id/eventDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_match" | |
app:destination="@id/ready_match" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_explore" | |
app:destination="@id/generalRegionalChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_edit_profile" | |
app:destination="@id/editProfile" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_conversation" | |
app:destination="@id/conversation" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_my_bookmark" | |
app:destination="@id/my_bookmark" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_recent_chat" | |
app:destination="@id/userChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_guestDetail" | |
app:destination="@id/guestDetail" /> | |
</fragment> | |
<fragment | |
android:id="@+id/changePassword" | |
android:name="com.dtm.views.changePassword.ChangePassword" | |
android:label="changePassword"> | |
</fragment> | |
<fragment | |
android:id="@+id/settings" | |
android:name="com.dtm.views.settings.Settings" | |
android:label="settings"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_login" | |
app:destination="@id/chooseOption" | |
app:popUpTo="@id/homeProfile" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_subscription_plan" | |
app:destination="@id/subscriptionPlans" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_manageSubsc" | |
app:destination="@id/manageSubscription" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_cms" | |
app:destination="@id/cmsPages" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_faqs" | |
app:destination="@id/faqs" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_change_pass" | |
app:destination="@id/changePassword" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_contact_us" | |
app:destination="@id/contactUs" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_settings_to_disableAccount" | |
app:destination="@id/disableAccount" /> | |
</fragment> | |
<fragment | |
android:id="@+id/cmsPages" | |
android:name="com.dtm.views.cmsPages.CMSPages" | |
android:label="cmsPages"> | |
</fragment> | |
<fragment | |
android:id="@+id/manageSubscription" | |
android:name="com.dtm.views.manageSubscription.ManageSubscription" | |
android:label="manageSubscription"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_manage_to_cancel" | |
app:destination="@id/cancelSubscription" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_manage_to_update_card" | |
app:destination="@id/subscriptionPayment" /> | |
</fragment> | |
<fragment | |
android:id="@+id/disableReport" | |
android:name="com.dtm.views.disableReport.DisableReport" | |
android:label="disableReport"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_report_to_login" | |
app:destination="@id/chooseOption" | |
app:popUpTo="@id/chooseOption" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/disableAccount" | |
android:name="com.dtm.views.disableAccount.DisableAccount" | |
android:label="disableAccount"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_disable_to_report" | |
app:destination="@id/disableReport" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_disable_to_profile" | |
app:destination="@id/homeProfile" | |
app:popUpTo="@id/homeProfile" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/cancelSubscription" | |
android:name="com.dtm.views.cancelSubscription.CancelSubscription" | |
android:label="cancelSubscription"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_cancel_to_profile" | |
app:destination="@id/homeProfile" | |
app:popUpTo="@id/homeProfile" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/faqs" | |
android:name="com.dtm.views.faqs.FAQs" | |
android:label="faqs"> | |
</fragment> | |
<fragment | |
android:id="@+id/contactUs" | |
android:name="com.dtm.views.contactUs.ContactUs" | |
android:label="contactUs"> | |
</fragment> | |
<fragment | |
android:id="@+id/editProfile" | |
android:name="com.dtm.views.editProfile.EditProfile" | |
android:label="editProfile"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_edit_to_collection" | |
app:destination="@id/imageCollection" /> | |
</fragment> | |
<fragment | |
android:id="@+id/ready_match" | |
android:name="com.dtm.views.readyToMatch.ReadyToMatch" | |
android:label="ready_match"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_auto_match" | |
app:destination="@id/splash" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_explore_forum" | |
app:destination="@id/generalRegionalChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_bookmark" | |
app:destination="@id/my_bookmark" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_chat_list" | |
app:destination="@id/conversation" /> | |
<action | |
android:id="@+id/action_ready_to_activities" | |
app:destination="@id/my_activities" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_hotseat_intro" | |
app:destination="@id/hot_seat_tune_in" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_flirt_intro" | |
app:destination="@id/flirting_tune_in" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_invite" | |
app:destination="@id/inviteFriend" /> | |
</fragment> | |
<fragment | |
android:id="@+id/your_matches" | |
android:name="com.dtm.views.yourMatches.YourMatches" | |
android:label="your_matches"> | |
<action | |
android:id="@+id/action_your_matches_to_explore" | |
app:destination="@id/generalRegionalChat" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_your_matches_to_conversation" | |
app:destination="@id/conversation" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
android:id="@+id/action_your_matches_to_my_bookmark" | |
app:destination="@id/my_bookmark" | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_your_matches_to_user_chat" | |
app:destination="@id/userChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_your_matches_to_home" | |
app:destination="@id/homeProfile" | |
app:popUpTo="@id/homeProfile" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_your_matches_to_filter" | |
app:destination="@id/filter" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_your_matches_to_guest_detail" | |
app:destination="@id/guestDetail" /> | |
</fragment> | |
<fragment | |
android:id="@+id/eventLearnMore" | |
android:name="com.dtm.views.eventLearnMore.EventLearnMore" | |
android:label="eventLearnMore"> | |
</fragment> | |
<fragment | |
android:id="@+id/eventDetail" | |
android:name="com.dtm.views.eventDetail.EventDetail" | |
android:label="eventDetail"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_event_detail_to_live_event" | |
app:destination="@id/liveEventVideo" /> | |
</fragment> | |
<fragment | |
android:id="@+id/liveEventVideo" | |
android:name="com.dtm.views.liveEvent.LiveEventVideo" | |
android:label="liveEventVideo"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_live_event_to_thanks" | |
app:destination="@id/eventDetail" | |
app:popUpTo="@id/eventDetail" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/generalRegionalChat" | |
android:name="com.dtm.views.generalRegionalChat.GeneralRegionalChat" | |
android:label="generalRegionalChat"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_generalRegionalChat_to_auto_match" | |
app:destination="@id/ready_match" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_generalRegionalChat_to_RegionalChat" | |
app:destination="@id/RegionalChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_generalRegionalChat_to_recommend" | |
app:destination="@id/recommend_other" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_generalRegionalChat_to_guest_profile" | |
app:destination="@id/guestDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_chat_to_guest_profile" | |
app:destination="@id/guestDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_generalRegionalChat_to_user_chat" | |
app:destination="@id/userChat" /> | |
</fragment> | |
<fragment | |
android:id="@+id/RegionalChat" | |
android:name="com.dtm.views.regionalChat.RegionalChat" | |
android:label="RegionalChat"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_regionalChat_to_recommend" | |
app:destination="@id/recommend_other" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_regionalChat_to_guest_profile" | |
app:destination="@id/guestDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_regionalChat_to_user_chat" | |
app:destination="@id/userChat" /> | |
</fragment> | |
<fragment | |
android:id="@+id/conversation" | |
android:name="com.dtm.views.conversation.Conversation" | |
android:label="conversation"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_conversation_to_userChat" | |
app:destination="@id/userChat" /> | |
</fragment> | |
<fragment | |
android:id="@+id/userChat" | |
android:name="com.dtm.views.userChat.UserChat" | |
android:label="userChat"> | |
<!-- <action--> | |
<!-- android:id="@+id/action_userChat_to_calling"--> | |
<!-- app:destination="@id/video_calling"/>--> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_userChat_to_gallery" | |
app:destination="@id/imageCollection" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_userChat_to_guest_detail_anim" | |
app:destination="@id/guestDetail" /> | |
</fragment> | |
<fragment | |
android:id="@+id/my_bookmark" | |
android:name="com.dtm.views.myBookMarks.MyBookMarks" | |
android:label="my_bookmark"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_my_bookmark_to_guestDetail" | |
app:destination="@id/guestDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_my_bookmark_to_chat" | |
app:destination="@id/userChat" /> | |
</fragment> | |
<fragment | |
android:id="@+id/inviteFriend" | |
android:name="com.dtm.views.inviteFriend.InviteFriend" | |
android:label="inviteFriend"> | |
</fragment> | |
<fragment | |
android:id="@+id/guestDetail" | |
android:name="com.dtm.views.guestDetail.GuestDetail" | |
android:label="guestDetail"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_guestDetail_to_chat" | |
app:destination="@id/userChat" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_guestDetail_to_recommend" | |
app:destination="@id/recommend_other" /> | |
</fragment> | |
<fragment | |
android:id="@+id/recommend_other" | |
android:name="com.dtm.views.recommendOther.RecommendOther" | |
android:label="recommend_other"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_recommend_other_to_sent" | |
app:destination="@id/recommend_sent" | |
app:popUpTo="@id/recommend_other" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/recommend_sent" | |
android:name="com.dtm.views.recommendSent.RecommendSent" | |
android:label="recommend_sent"> | |
</fragment> | |
<fragment | |
android:id="@+id/my_activities" | |
android:name="com.dtm.views.myActivities.MyActivities" | |
android:label="my_activities"> | |
</fragment> | |
<fragment | |
android:id="@+id/flirting_game_feature" | |
android:name="com.dtm.views.flirtingGameFeature.FlirtingGameFeature" | |
android:label="flirting_game_feature"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_game_feature_to_game_select" | |
app:destination="@id/flirting_select" | |
app:popUpTo="@id/flirting_game_feature" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/flirting_select" | |
android:name="com.dtm.views.flirtingSelect.FlirtingSelect" | |
android:label="flirting_select"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_flirting_select_to_game_result" | |
app:destination="@id/flirting_game_result" | |
app:popUpTo="@id/flirting_select" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/flirting_game_result" | |
android:name="com.dtm.views.flirtingGameResult.FlirtingGameResult" | |
android:label="flirting_game_result"> | |
</fragment> | |
<fragment | |
android:id="@+id/filter" | |
android:name="com.dtm.views.filter.Filter" | |
android:label="filter"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_filter_to_matches" | |
app:destination="@id/your_matches" | |
app:popUpTo="@id/filter" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/hot_seat_tune_in" | |
android:name="com.dtm.views.hotSeatIntro.HotSeatIntro" | |
android:label="hot_seat_tune_in"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_tune_in_to_feature" | |
app:destination="@id/hot_seat_feature" | |
app:popUpTo="@id/hot_seat_tune_in" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_tune_in_to_policy" | |
app:destination="@id/cmsPages" /> | |
</fragment> | |
<fragment | |
android:id="@+id/hot_seat_feature" | |
android:name="com.dtm.views.hotSeatFeature.HotSeatFeature" | |
android:label="hot_seat_feature"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_feature_to_stats" | |
app:destination="@id/hot_seat_stats" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_feature_to_thanks" | |
app:destination="@id/hot_seat_ends" | |
app:popUpTo="@id/hot_seat_feature" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/hot_seat_stats" | |
android:name="com.dtm.views.hotSeatFeature.HotSeatFeature" | |
android:label="hot_seat_feature"> | |
</fragment> | |
<fragment | |
android:id="@+id/hot_seat_ends" | |
android:name="com.dtm.views.hotSeatEnds.HotSeatEnds" | |
android:label="hot_seat_ends"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_seat_ends_to_chat" | |
app:destination="@id/userChat" /> | |
</fragment> | |
<fragment | |
android:id="@+id/flirting_tune_in" | |
android:name="com.dtm.views.flirtingGameIntro.FlirtingGameIntro" | |
android:label="flirting_tune_in"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_tune_in_to_flirting_game_feature" | |
app:destination="@id/flirting_game_feature" | |
app:popUpTo="@id/flirting_tune_in" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_flirting_to_policy" | |
app:destination="@id/cmsPages" /> | |
</fragment> | |
<!-- <fragment--> | |
<!-- android:id="@+id/video_calling"--> | |
<!-- android:name="com.dtm.views.videoCalling.VideoCalling"--> | |
<!-- android:label="video_calling">--> | |
<!-- <action--> | |
<!-- android:id="@+id/action_video_calling_to_call_screen"--> | |
<!-- app:destination="@id/video_callScreen"--> | |
<!-- app:popUpTo="@id/video_calling"--> | |
<!-- app:popUpToInclusive="true" />--> | |
<!-- </fragment>--> | |
<!-- <fragment--> | |
<!-- android:id="@+id/video_callScreen"--> | |
<!-- android:name="com.dtm.views.videoCall.VideoCallScreen"--> | |
<!-- android:label="video_callScreen">--> | |
<!-- <action--> | |
<!-- android:id="@+id/action_video_calling_to_flirting_game_feature"--> | |
<!-- app:destination="@id/flirting_game_feature"--> | |
<!-- app:popUpTo="@id/video_calling"--> | |
<!-- app:popUpToInclusive="true" />--> | |
<!-- </fragment>--> | |
<fragment | |
android:id="@+id/cropImage" | |
android:name="com.dtm.views.cropImage.CropImage" | |
android:label="cropImage"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_crop_to_user_chat" | |
app:destination="@id/userChat" | |
app:popUpTo="@id/userChat" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_crop_to_show_selection" | |
app:destination="@id/camera_selection" | |
app:popUpTo="@id/cropImage" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/camera_selection" | |
android:name="com.dtm.views.cameraSelection.CameraSelection" | |
android:label="camera_selection"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_selection_to_crop" | |
app:destination="@id/cropImage" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_selection_to_gallery" | |
app:destination="@id/imageCollection" | |
app:popUpTo="@id/camera_selection" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_selection_to_user_chat" | |
app:destination="@id/userChat" | |
app:popUpTo="@id/userChat" | |
app:popUpToInclusive="true" /> | |
</fragment> | |
<fragment | |
android:id="@+id/dashboard" | |
android:name="com.dtm.views.dashboard.Dashboard" | |
android:label="dashboard"> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_dashboard_to_home_profile" | |
app:destination="@id/homeProfile" | |
app:popUpTo="@id/dashboard" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_dashboard_to_conversation" | |
app:destination="@id/conversation" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_dashboard_to_forum" | |
app:destination="@id/forum" | |
app:popUpTo="@id/dashboard" | |
app:popUpToInclusive="true" | |
app:popUpToSaveState="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_dashboard_to_invite" | |
app:destination="@id/inviteFriend" | |
app:popUpTo="@id/dashboard" | |
app:popUpToInclusive="true" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_ready_to_auto_match" | |
app:destination="@id/your_matches" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_home_to_guestDetail" | |
app:destination="@id/guestDetail" /> | |
<action | |
app:enterAnim="@anim/anim_slide_in_right" | |
app:exitAnim="@anim/anim_fade_out" | |
app:popEnterAnim="@anim/anim_fade_in" | |
app:popExitAnim="@anim/anim_slide_out_right" | |
android:id="@+id/action_dashboard_to_calendar" | |
app:destination="@id/calendar" /> | |
</fragment> | |
<fragment | |
android:id="@+id/forum" | |
android:name="com.dtm.views.forum.Forum" | |
android:label="cropImage"> | |
</fragment> | |
<fragment | |
android:id="@+id/calendar" | |
android:name="com.dtm.calendar.CalendarActivity" | |
android:label="calendar"> | |
</fragment> | |
</navigation> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment