The main activity of the app is TabActivity that contains some OneActivity
It is necessary to call from another part of app the OneActivity not creating the another instance of it, just calling onResume() of the one that lies in TabActivity
Tried set different launchMode ("singleTop", "singleTask", "singleInstance") and set flags for intent:
intent.setAction(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_LAUNCHER);
How to do it not creating a new instance of activity?