I'm writing an Android app that lets the user take a photo, then uses the photo as a background for another view. The problem is that after the photo is taken, the app will not switch to the new view. setContentView() is failing, but only on my Samsung Galaxy S, not in the emulator.
I have a theory. The Samsung is taking the photo in landscape orientation. After the photo is taken, it switches back to portrait orientation. I believe it is this switch that causes the app to return to its main view. But alas, I am at a loss as to how to resolve this.
Here is some code:
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE, null);
intent.putExtra(MediaStore.EXTRA_OUTPUT, getImageUri());
startActivityForResult(intent, ACTIVITY_TAKE_PHOTO);
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode != RESULT_OK)
return;
switch(requestCode) {
case ACTIVITY_TAKE_PHOTO:
setContentView(R.layout.foo);
break;
}
}
private Uri getImageUri() {
File file = new File(Environment.getExternalStorageDirectory() + "/DCIM", CAPTURE_TITLE);
Uri imgUri = Uri.fromFile(file);
return imgUri;
}