Possible Duplicate:
How to start activity in another application?
My application schema is like that ;
SplashActivty ( <category android:name="android.intent.category.LAUNCHER" /> )
LoginActivity
MainActivty
BanksActivity ( Gridview of some banks )
BankActivity ( Some detail information about selected bank )
Request loan
etc.
HotelsActivty ( Gridview of some hotels )
HotelActivty
etc. ( same hierarcy as banks...)
Additional info: All activities/actions makes request an api call for retrieving informations and assets of that screen.
My scenario/question is that;
Is there anyway; can I start BanksActivty or one of other activity which is not launcher nor mainActivity directly from outside of my app ?
Does the question makes sense?