Android 打开其他程序

        Intent intent = new Intent();
        intent.setComponent(new ComponentName("所要打开的程序包名", "所要打开的程序包名+主运行类名"));
        intent.setAction(Intent.ACTION_VIEW);
        startActivity(intent);

posted @ 2014-11-05 23:12  jasonkent27  阅读(154)  评论(0编辑  收藏  举报