android调用第三方从程序,android调用第三方,Intent inten
分享于 点击 27164 次 点评:12
android调用第三方从程序,android调用第三方,Intent inten
Intent intent = new Intent();ComponentName comp = new ComponentName("com.tencent.android.pad", "com.tencent.android.pad.paranoid.desktop.DesktopActivity");intent.setComponent(comp);intent.setAction("android.intent.action.MAIN");intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(intent);//该片段来自于http://byrx.net
用户点评