android应用内跳转到微信详解手机开发

跳转至微信

        Intent intent = new Intent(); 
        ComponentName cmp = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.LauncherUI"); 
        intent.setAction(Intent.ACTION_MAIN); 
        intent.addCategory(Intent.CATEGORY_LAUNCHER); 
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
        intent.setComponent(cmp); 
        startActivity(intent); 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/6220.html

(0)
上一篇 2021年7月17日
下一篇 2021年7月17日

相关推荐

发表回复

登录后才能评论