Skip to content

Instantly share code, notes, and snippets.

@yuio4235
Forked from andforce/lunch_weixin_time_line
Created July 9, 2017 13:53
Show Gist options
  • Save yuio4235/6940266dfe093431d64fa3c97cc98a0a to your computer and use it in GitHub Desktop.
Save yuio4235/6940266dfe093431d64fa3c97cc98a0a 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