这个后来有解决方案没,我们也遇到了
webview中h5页面调用wx.openLocation方法打开地图,点击右上角IOS不能分享https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html Webview内的h5页面中调用wx.openLocation方法打开地图,点击右上角IOS不能发送给朋友,安卓可以
2022-04-27后来解决了吗
使用wx.openLocation打开地图后,为什安卓可以发送给朋友,但iOS中右上角选项只有收藏?使用微信JSSDK 中 wx.openLocation打开地图,安卓可以发送给朋友,但是iOS中右上角选项只有收藏,强行调用showMenuItems也无效,该如何解决
2022-04-27同问
微信7.0.20, android11,是不支持imageData分享图片了吗https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Share_and_Favorites/Android.html 图片分享使用Bitmap分享也提示需要使用FileProvider,是android11,微信7.0.12后都只能使用setImagePath方法吗 private static boolean sharePicture(String filePath, Bitmap bmp, int scene, String appId) { WXImageObject imageObject = new WXImageObject(bmp); // imageObject.setImagePath(filePath); Bitmap thumbBmp; // thumb is always created within this method, so recycle is required if (bmp.getWidth() == THUMB_SIZE && bmp.getHeight() == THUMB_SIZE) { thumbBmp = bmp; } else { thumbBmp = Bitmap.createScaledBitmap(bmp, THUMB_SIZE, THUMB_SIZE, true); bmp.recycle(); } return share(imageObject, null, thumbBmp, null, scene, appId); }
2020-11-26