Android - Using Camera Intent but not updating correctly?
- by Tyler
Hello -
I am using an intent to capture a picture:
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "test.jpg")));
startActivityForResult(i, 2);
And then once taken I do the following:…