码迷,mamicode.com
首页 > 移动开发 > 详细

Android工程开发笔记<一>

时间:2015-01-07 12:36:00      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

---------------------------------------不同 APP相互调用 activity

 

1.ComponentName()

Intent _Intent = new Intent(Intent.ACTION_MAIN);

_Intent.setComponent(new ComponentName("com.semp.skipdemo002","com.semp.skipdemo002.activity.SkipDemo002Activity"));

_Intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

try {

startActivity(_Intent);

} catch (Exception e) {

// TODO Auto-generated catch block

Toast.makeText(this, "您没有安装 SkipDemo002!",

Toast.LENGTH_LONG).show();

e.printStackTrace();

}

如果需要skipdemo002的桌面图标不显示,则不设置skipdemo002的 mainfest.xml 中的 launcher;

否则,像一般 APP 一样配置 mainfest.xml 文件.

跳转系统应用一般也是使用 componentName().

2.getPackageManager().getLaunchIntentForPackage()

Intent _Intent = getPackageManager().getLaunchIntentForPackage("com.semp.skipdemo002");

// Intent _Intent=new Intent("com.emi.emiwms.wms");

if (_Intent != null) { 

//可传值

startActivity(_Intent); 

} else {

Toast.makeText(WorkProductActivity.this, "您没有安装skipdemo002",Toast.LENGTH_LONG).show();

}

使用 action.

 

Android工程开发笔记<一>

标签:

原文地址:http://www.cnblogs.com/WongSuechang/p/4207971.html

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