gpt4 book ai didi

android - 从 Gallery 加载 ImageView 上的图片(图片来 self 的 Google Photos)

转载 作者:行者123 更新时间:2023-11-30 04:23:37 27 4
gpt4 key购买 nike

我正在从图库中获取图片到我的应用程序。它适用于位于我的设备(平板电脑、手机)中的照片。当照片来自“云端”时,它不起作用,我的意思是,我的 Google 相册/Picasa。

这是我正在做的:

    fotoPaciente.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// To open up a gallery browser
Intent photoPickerIntent = new Intent();
photoPickerIntent.setType("image/*");
photoPickerIntent.putExtra("crop", "true");
//photoPickerIntent.putExtra(MediaStore.EXTRA_OUTPUT, getTempUri());
photoPickerIntent.putExtra("outputFormat",
Bitmap.CompressFormat.JPEG.toString());

photoPickerIntent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(photoPickerIntent, "Selecione uma imagem"),1);

}


});

这是我的 Activity 结果:

      public void onActivityResult(int requestCode, int resultCode, Intent data) { 

if (resultCode == RESULT_OK) {

if (requestCode == 1) {

// currImageURI is the global variable I'm using to hold the content:// URI of the image
currImageURI = data.getData();
fotoPaciente.setImageURI(currImageURI);
String pathFoto = currImageURI.getPath();

if (pathFoto.startsWith("/external")) {
pathFoto = getFilePathFromUri(currImageURI);
}



}
}
}

正如我所说,它适用于我设备中的图片。

最佳答案

查看 Picasa API Here

关于android - 从 Gallery 加载 ImageView 上的图片(图片来 self 的 Google Photos),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8888940/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com