首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

本土程序打开其它程序

2012-09-22 
本地程序打开其它程序Intent i new Intent(android.intent.action.MAIN)i.setComponent(new Componen

本地程序打开其它程序

Intent i = new Intent("android.intent.action.MAIN");i.setComponent(new ComponentName(packageName, className));startActivity(i);

?packageName包名

className类名

热点排行