在我的应用程序中,我想上传图片。
为此,我必须从Android设备中的图库中获取图像。
如何编写完成此操作的代码?
答案 0 :(得分:35)
将操作提升为ACTION_GET_CONTENT
,并将类型设置为“image/*
”。这将启动照片选择器活动。当用户选择图像时,您可以使用onActivityResult
回调来获取结果。
类似的东西:
Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, 1);
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK)
{
Uri chosenImageUri = data.getData();
Bitmap mBitmap = null;
mBitmap = Media.getBitmap(this.getContentResolver(), chosenImageUri);
}
}