I am developing an app that uses packagenames to start a Third Party App. I have done some research and found out that all apps can be started from a launcher intent. Are th
Just put it in an View.OnClickListener:
myButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = getPackageManager().getLaunchIntentForPackage(theOtherActivityPackage); startActivity( intent ); } });