注册

安卓 怎么获取到 接收到的图片和音频文件 的url?

发送已完成,但是通过什么方式去获取 图片和音频文件 在本地或者在网上的url呢?
已邀请:
图片:ImageMessageBody imgBody = (ImageMessageBody) message.getBody();
String localPath imgBody.getLocalUrl();//本地路径
String remotePath = imgBody.getRemoteUrl();//远程路径                   
String thumbRemoteUrl = imgBody.getThumbnailUrl();//缩略图路径
 
VideoMessageBody videoBody = (VideoMessageBody) message.getBody();
 String localThumb = videoBody.getLocalThumb();

要回复问题请先登录注册