Skip to content

Instantly share code, notes, and snippets.

@assassindesign
Forked from andforce/lunch_weixin_time_line
Created August 9, 2021 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save assassindesign/006dd7d7efa17f41b025a54be115381d to your computer and use it in GitHub Desktop.
Save assassindesign/006dd7d7efa17f41b025a54be115381d to your computer and use it in GitHub Desktop.
Intent intent = new Intent(Intent.ACTION_VIEW);
ComponentName cn = new ComponentName("com.tencent.mm", "com.tencent.mm.plugin.base.stub.WXCustomSchemeEntryActivity");
intent.setData(Uri.parse("weixin://dl/moments"));
intent.setFlags(Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP);
intent.setComponent(cn);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment