Chinaunix首页 | 论坛 | 博客
  • 博客访问: 108934
  • 博文数量: 60
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 280
  • 用 户 组: 普通用户
  • 注册时间: 2013-09-09 12:19
文章分类

全部博文(60)

文章存档

2015年(3)

2014年(41)

2013年(16)

我的朋友

分类: Android平台

2014-08-11 17:02:48

Intent mIntent = new Intent();
ComponentName comp = new ComponentName("需要启动的APK包名","需要启动的APK入口类(包名也要写上)");
mIntent.setComponent(comp);
mIntent.setAction("android.intent.action.MAIN");
startActivity(mIntent);
阅读(642) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~