美文网首页
安卓通过Intent一键打开微信扫一扫

安卓通过Intent一键打开微信扫一扫

作者: ysnows | 来源:发表于2018-08-13 16:41 被阅读75次
    1. 第一种方式:直接打开扫一扫页面

              Intent intent = new Intent();
              intent.setComponent(new ComponentName("com.tencent.mm", "com.tencent.mm.ui.LauncherUI"));
              intent.putExtra("LauncherUI.From.Scaner.Shortcut", true);
              intent.setFlags(335544320);
              intent.setAction("android.intent.action.VIEW");
              context.startActivity(intent);
          
      
    2. 第二种方式:先打开微信然后跳入到二维码扫描页面

              Intent intent = context.getPackageManager().getLaunchIntentForPackage("com.tencent.mm");
              intent.putExtra("LauncherUI.From.Scaner.Shortcut", true);
              context.startActivity(intent);```
      
      
    欢迎关注我的个人公众号(捯饬捯饬啥)
    daochidaochisha

    相关文章

      网友评论

          本文标题:安卓通过Intent一键打开微信扫一扫

          本文链接:https://www.haomeiwen.com/subject/ghpubftx.html