I have an image on the sd card. I need to fire up the stock Gallery app from my app to show the image. I get a NullPointerException from the stock Gallery app.
Here is my code.
Intent i = new Intent(Intent.ACTION_VIEW);
i.setType("image/png");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse(IMAGE_URL_ON_SD_CARD));
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
Can anyone help me understand what I am doing wrong?
Thanks a lot.