android如何获取相册所有图片

 我来答
若以下回答无法解决问题,邀请你更新回答
lindsay侃球
推荐于2016-06-09 · TA获得超过270个赞
知道小有建树答主
回答量:249
采纳率:100%
帮助的人:214万
展开全部
// 从本地选择图片(比如按钮触发该事件,调取系统相册)
if (Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
Intent getImageIntent = new Intent(Intent.ACTION_GET_CONTENT);
getImageIntent.addCategory(Intent.CATEGORY_OPENABLE);
getImageIntent.setType("image/jpeg");
startActivityForResult(getImageIntent, 4);
} else {
Toast.makeText(getApplicationContext(), "SD卡不可用", 0).show();
}

// 本地选择 结果
在activity的onactivityresult()中写:
if (data != null) {//判空
Uri uri = data.getData();
uri.getPath().toString();
ContentResolver cr = this.getContentResolver();
try {
Bitmap bmp;//压缩
BitmapFactory.Options option = new BitmapFactory.Options();
option.inJustDecodeBounds = true;
option.inPurgeable = true;
option.inInputShareable = true;
option.inSampleSize = 2;
option.inJustDecodeBounds = false;
bmp = BitmapFactory.decodeStream(cr.openInputStream(uri),
null, option);
//imageView_userLogo(view控件设置背景)
imageView_userLogo.setImageBitmap(BmpToRound
.toRoundBitmap(bmp));
File file = SaveBitmapToSdCard.saveMyBitmap(
getApplicationContext(),
"" + System.currentTimeMillis(), bmp);
startUpLoad(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2015-09-01
展开全部
下载快图
设置里面显示所有图片
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式