1
resposta

Escolher uma foto da galeria

Olá! Como posso escolher uma foto da galeria e por ela em vez de pegar uma foto com a cámera. Obrigado!

1 resposta

Não sou o especialista em android, mas achei esse código aqui =>

Intent getIntent = new Intent(Intent.ACTION_GET_CONTENT);
    getIntent.setType("image/*");

    Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    pickIntent.setType("image/*");

    Intent chooserIntent = Intent.createChooser(getIntent, "Select Image");
    chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] {pickIntent});

    startActivityForResult(chooserIntent, PICK_IMAGE);

Consegue testar e adaptar para sua situação?