Zoopla have embedded Google Maps into their app (see the screen shot)
Is this something you can do generally, i.e. embed any app in your own, or is it specific just to Google Maps?
I want to do the same with Skype, is that possible?
Edit: I know how to launch Skype as a separate app using URI's, using ..
Intent intent = new Intent("android.intent.action.VIEW", "skype:some_skype_id");
startActivity(intent);
... but I want Skype to appear as running within my app, in particular to keep my action bar visible at the top.
Thanks
Damian.