quick cocos2dx 添加wap 跳转微信,支付宝
发布时间:2020-12-14 17:21:28 所属栏目:百科 来源:网络整理
导读:修改Cocos2dxWebView,在shouldOverrideUrlLoading 里添加 try { if(urlString.startsWith("weixin://") || urlString.startsWith("alipays://") || urlString.startsWith("mqqapi://") || urlString.startsWith("alipayqr://") //其他自定义的scheme ) { In
修改Cocos2dxWebView,在shouldOverrideUrlLoading 里添加 try { if(urlString.startsWith("weixin://") || urlString.startsWith("alipays://") || urlString.startsWith("mqqapi://") || urlString.startsWith("alipayqr://") //其他自定义的scheme ) { Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(urlString)); Cocos2dxHelper.getActivity().startActivity(intent); return true; }else if (urlString.startsWith("intent://platformapi/startapp")) { Intent intent = Intent.parseUri(urlString,Intent.URI_INTENT_SCHEME); intent.addCategory("android.intent.category.BROWSABLE"); intent.setComponent(null); Cocos2dxHelper.getActivity().startActivity(intent); } } catch (Exception e) { //防止crash (如果手机上没有安装处理某个scheme开头的url的APP,会导致crash) return false; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |