0
I’m trying to recover an image from Storage of Firebase using the Glide, I searched in many places, I used the code the way I’ve been seeing and yet I couldn’t recover the image at all. Attached shows how I wanted it to look, the first image shows how it should be, these images are in the app itself, then the next image shows how it is getting, I removed the image from the calendar to try to recover by firebase but I could not. It follows below the code and images
public class MainActivity extends AppCompatActivity {
private ImageView proximaAcao;
private ImageView galeria;
private ImageView calendario;
private ImageView contatos;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
proximaAcao = (ImageView) findViewById(R.id.proxima_acao_id);
galeria = (ImageView) findViewById(R.id.galeria_id);
calendario = (ImageView) findViewById(R.id.calendario_id);
contatos = (ImageView) findViewById(R.id.contatos_id);
Glide.with(MainActivity.this).load("gs://doe-amor.appspot.com/calendario_app.png");
I’ve already put the right dependencies on the grid and nothing, someone could help me?
I did it, I created the download link, put it there but it continues the same way! In fact I had already done, I used the two links, both the one I placed and the link to download.
– Marcelo Portela