You can run an intention. What will launch GTalk or Skype ..
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("write the package name for GTalk / Skype");
startActivity( LaunchIntent );
These links may be useful: -
one similar link
similar question and To find out the name of the package, see this link
source
share