发送路径包含中文字符的图片失败

原因:生成图片 Uri 的代码为 Uri.fromFile

解决方案:使用 Uri.parse(“file://” + file.getFilePath()) 生成图片 Uri。