How can I resume my app from its previous position.
Note that it is still active, just paused. So if I click the androids current app button, or the app icon it resu
Use this it is same as android doing for your launcher activity
Intent notificationIntent = new Intent(context, SplashActivity.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
PendingIntent clickActionIntent = PendingIntent.getService(context, 0, notificationIntent, 0);