tags:

views:

524

answers:

3

I have Default.png(480*320) image.My question is that when i start application then Default.png image is show in landscape mode.How it possible?

+1  A: 

why cannot you use already rotated picture with 320*480 resolution?)

Morion
If i am put Default.png image in resources folder then it will take as a splash screen.But how to rotate this image?
MD
I mean that your image can be rotated before you include it in your project. You cannot modify this picture on flight, because your app is loading.
Morion
-1 This is only half right--see my answer for full answer.
bentford
A: 

you should change the resolution of your image.

cappuccino
-1 Resolution has nothing to do with image orientation.
bentford
+5  A: 

First, pre-rotate your splash image so you have a portrait and landscape version.

Then, use Default-Portrait.png and Default-Landscape.png as image names.

Default.png only works with one image for both orientations.

bentford