Android调用第三方应用

Intent intent=new Intent();
//包名 包名+类名(全路径)
intent.setClassName("com.qn.app.store", "com.qn.app.store.Main");
startActivity(intent);
原文地址:https://www.cnblogs.com/tianshidechibang234/p/3441069.html