• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to call main Activity from MapActivity within the same APP ?

Hi,
I am working on Android APP, I want to mention flow first about it.

Like : SplashScreen(Activity) >>> MainMenu(FrameLayout) >>> MyMapActivity(MapActivity) But everthing working fine except when I go back from MapActivity to MainMenu(FrameLayout) then the SplashScreen it start again, I dont want to splashScreen again during returning from MapActivity to mainMenu.

And I am not getting how to call MainMenu(FrameLayout) from MapActivity,

I have done:
Intent i = new Intent(MyMapActivity.this, SplashScreen.class);
startActivity(i);

Note: Directly FrameLayout I am unable to call so I mentioned here SplashScreen, but it again call SplashScreen.

Please help me to resolve it with alternative solution and with a piece of codes..



Thanks and Regards,
Andy:confused:
 
Back
Top Bottom