Hi I am trying an example app to browse images from gallery an i selected one one image and that picked image should show in landscape?
m_oIntent = new Intent(Intent.ACTION_PICK);
m_oIntent.setType("image/*");
m_oIntent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(m_oIntent, "Complete action using"), PICK_FROM_GALLERY);
like this i am picking image after that i need to show image in landscape?