//微信快捷启动(bizshortcut方式1)
//微信聊天页面启动(带等待/重启,公众号)
//微信聊天页面启动(指定模式,个人号)
//微信快捷启动(bizshortcut方式2,指定组件+启动旗标)
//微信聊天页面启动(带flags参数)
#微信聊天页面启动 #shell
am start "intent:#Intent;action=com.tencent.mm.action.BIZSHORTCUT;B.LauncherUI.From.Biz.Shortcut=true;S.LauncherUI.Shortcut.Username=wxid;end";//微信聊天页面启动(带等待/重启,公众号)
am start -W -S -n com.tencent.mm/.ui.chatting.ChattingUI --es Chat_User gh_;//微信聊天页面启动(指定模式,个人号)
am start -n com.tencent.mm/com.tencent.mm.ui.chatting.ChattingUI --ei Chat_Mode 1 --es Chat_User wxid;//微信快捷启动(bizshortcut方式2,指定组件+启动旗标)
am start "intent:#Intent;action=com.tencent.mm.action.BIZSHORTCUT;launchFlags=0x10000000;component=com.tencent.mm.plugin.base.stub.WXEntryActivity;B.LauncherUI.From.Biz.Shortcut=true;S.LauncherUI.Shortcut.Username=wxid;end";//微信聊天页面启动(带flags参数)
am start -n com.tencent.mm/.ui.chatting.ChattingUI --es Chat_User wxid -f 0x14000000;#微信聊天页面启动 #shell