一:必须有 WXEntryActivity 这个界面:
<activity
android:name=".wxapi.WXEntryActivity"
android:exported="true"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:taskAffinity="应用的包名"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
二:WXEntryActivity界面实现 IWXAPIEventHandler 接口,微信发送的请求将回调到 onReq 方法,发送到微信请求的响应结果将回调到 onResp 方法
三:初始化IWXAPI api.handleIntent(getIntent(), this);
四:在onReq()中做跳转
@Override
public void onReq(BaseReq baseReq) {
System.out.println("WXEntryActivity onReq:" + baseReq);
startActivity(new Intent(WXEntryActivity.this, SplashActivity.class));
finish();
}
具体请看官方文档https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html#22