-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Tentei usar o Glide, porém não consegui mostrar o bitmap de retorno. Também tentei colocar o bitmap diretamente na image view, porém não foi mostrado a imagem. Sempre é chamado o método onSuccess, porém não consigo obter seus dados.
A imagePath me retorna content://com.android.providers.media.documents/document/image%3A8994 na qual acredito estar correto
Retropicker.Builder builder = new Retropicker.Builder(getMainActivity())
.setTypeAction(Retropicker.GALLERY_PICKER);
builder.enquee(new CallbackPicker() {
@Override
public void onSuccess(Bitmap bitmap, String imagePath) {
imageProfilePicture.setImageBitmap(bitmap);
}
@Override
public void onFailure(Throwable error) {
showMessage(error.getMessage());
}
});
Retropicker retropicker = builder.create();
retropicker.open();
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels