我也遇到了同样的问题,基础库的bug,2.9.5及以下版本没有这个问题
热启动时“启动参数”和“启动场景”返回值不准确启动参数:在开发工具里启动参数这里设置一个参数比如 test=777,App.onLaunch 中打印 options。 然后编译,这时 options.query 是 test=777;再修改启动参数的值为 test=888,重新编译,options 打印的值还是上一次的 777。 热启动时从 App.onLaunch、App.onShow 中获取到的的 options.query 的 test 是上一次的值,即例子中的 test=777,Page.onLoad 是本次的启动参数 test=888。 场景值:热启动时 App.onLaunch、App.onShow 和 Page.onLoad 的场景值都是上一次的。
2022-03-07请问这个问题解决了吗?我也遇到了相同的问题
android 分享失败,多文件分享仅支持照片格式Intent intent = new Intent(); intent.putExtra(Intent.EXTRA_TEXT, content); intent.setComponent(componentName); intent.setAction(Intent.ACTION_SEND); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); context.startActivity(intent); app系统分享多图,单图到微信好友提示错误。[图片]app:好衣库,爱库存,宝贝仓,手机相册
2021-03-30