赞
踩
调用系统摄像头拍照
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(headPath)));
startActivityForResult(intent, 1);
裁剪图像照片
String userCode=dbutils.queryString("user_info", "userCode", null, null);
headPath=MyApplication.savePath+"head/"+userCode+".jpg";
File headFile = new File(headPath);
if(headFile.exists())
{
Bitmap bit=commUtil.getBit(headPath);
iv_main_head.setImageBitmap(createCircleImage(bit,bi
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。