您的位置:首页 > 其它

安卓——上传头像的功能在一些手机上出现问题

2016-11-07 14:39 337 查看
      在onactivityForResult里面做一下处理即可。

if (data != null) {
Bundle extras = data.getExtras();
if (GeneralUtils.isEmpty(extras)) {
LogUtils.debug("extras为空" + data);
Uri uri = data.getData();
if (uri != null) {
head = BitmapFactory.decodeFile(uri.getPath());
setPicToView(head);// 保存在SD卡中
}
return;
}
head = extras.getParcelable("data");
if (head != null) {
/**
* 上传服务器代码
*/
setPicToView(head);// 保存在SD卡中
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: