我只是想开始我的活动,检索已经在手机图库中的一些图片(没有用户交互),并在我的活动中显示其中一个。这可能吗?
祝你好运, 的Mattias
答案 0 :(得分:0)
使用此代码获取图库图片
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);
}
}