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

运用间跳转

2012-09-24 
应用间跳转跳转到指定的应用程序Intent intent new Intent(Intent.ACTION_MAIN) ComponentName compone

应用间跳转
跳转到指定的应用程序
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName componentName = new ComponentName("com.android.settings", "程序name");
intent.setComponent(componentName);
startActivity(intent);

热点排行