美文网首页菜鸟Android知识Android开发经验谈
[Androidstudio]的坑之调用其他应用

[Androidstudio]的坑之调用其他应用

作者: 风雨byt | 来源:发表于2015-12-28 18:51 被阅读160次

想要调用其他应用??
当然 你首先需要知道其他应用的包名 和或者相应的activity名字就可以了啊
代码则是

Intent intent = getPackageManager().getLaunchIntentForPackage("包名");
if (intent == null) {
Toast.makeText(MainActivity.this, "no package", Toast.LENGTH_SHORT).show();
return;
}
//dosomething
startActivity(intent);

这样你就可以调用其他应用了 在dosomething里面可以定义一些规则来调用相应的activity啦
个人网站:http://didi-hi.com

相关文章

网友评论

    本文标题:[Androidstudio]的坑之调用其他应用

    本文链接:https://www.haomeiwen.com/subject/pkabhttx.html