IWXAPI api = WXAPIFactory.createWXAPI(context, AppVariable.weChatAppId);
WXLaunchMiniProgram.Req req = new WXLaunchMiniProgram.Req();
req.userName = AppVariable.WX_MinID; // 填小程序原始id
req.path = path+"orderId="+order_id; ////拉起小程序页面的可带参路径,不填默认拉起小程序首页,对于小游戏,可以只传入 query 部分,来实现传参效果,如:传入 "?foo=bar"。
req.miniprogramType = WXLaunchMiniProgram.Req.MINIPROGRAM_TYPE_PREVIEW;// 可选打开 开发版,体验版和正式版
if(AppUtils.isAppInstalled("com.tencent.mm")) {
api.sendReq(req);
}else{
showToast("未检测到手机安装微信APP,请前往应用市场下载");
}
<activity
android:name=".wxapi.WXEntryActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTask"
android:taskAffinity="xx.xxxx.xxx
android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<Button openType="launchApp" appParameter={orderId}>返回APP</Button>
问题解决了吗?什么方案呢?