• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps pick image from gallery show in landscape

Welcome to Android Forums.

I admit to being confused. What device are you using? What app are you asking about? Are you trying to display it in landscape or is it displaying in landscape when you don't want it to?

... Thom
 
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?
 
Back
Top Bottom