-1

我只想启动我的活动,检索手机图库中已经存在的一些图片(无需用户交互)并在我的活动中显示其中一张。那可能吗?

最好的问候, 马蒂亚斯

4

1 回答 1

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);
        }
}
于 2012-06-13T15:30:42.823 回答