Hi, I am new to android development field.In my app I want to launch an app by its package name and I can successfully do that by using this code
It launches the app successfully but it restart the app from its main launcher even if my app is running in the background .I want to launch that certain app in such a way that it should be resumed from where the user has left it..
I tried set flags method with intent but it always restarted the app from beginning..
Thanks in advance
Code:
Intent intent=getPackageManager().getLaunchIntentForPackage("com.android.mms"); startActivity(intent);
I tried set flags method with intent but it always restarted the app from beginning..
Thanks in advance
Comment