码迷,mamicode.com
首页 > 其他好文 > 详细

使用代码启动其他程序

时间:2014-07-20 22:15:53      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:android

你要访问其他的程序,那么这个程序要先装在到模拟器或真机上面,因为我们要使用要访问其他程序的包。

简单的访问有以下两种方式(目前只知道这两种):

一、使用Intent的setComponent方法

Intent intent = new Intent();
intent.setComponent(new ComponentName("包名", "包名.主类名"));
intent.setAction(Intent.ACTION_VIEW);
startActivity(intent);

二、使用包管理器

Intent intent = new Intent();
intent = getPackageManager().getLaunchIntentForPackage("包名");
startActivity(intent);


使用代码启动其他程序

标签:android

原文地址:http://blog.csdn.net/anjon520/article/details/37996867

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!