4

enter image description here

With reference to the picture , The App view is tilted, seems like it is not straight, You can see the App Name as well Jaago which is titled, I changed the AVD postions from Landscape to Potrait and ViceVersa ,but that doesn't effect my App View at all..Any help in this regard. The HomeScreen enter image description here

3 Answers3

1

Try to disabling "Hardware keyboard present" or removing "Keyboard lid support" for your emulator.

You can do this by going to the AVD Manager & editing the emulator you are using.


The reason for this might be related to the following bugs:

Sherif elKhatib
  • 45,786
  • 16
  • 89
  • 106
0

This is a bug with the Android emulator running 2.3

https://code.google.com/p/android/issues/detail?id=13189

Naveen Prince P
  • 4,521
  • 3
  • 16
  • 17
-3

android:screenOrientation="portrait" android:configChanges="keyboardHidden|orientation|screenSize"

*Add these lines in your Android Manifest file after declaring all activities in activity tags **

like:

  <activity android:name="com.geeklabs.ActivityMain"
  android:screenOrientation="portrait"
  android:configChanges="keyboardHidden|orientation|screenSize" />

May be it will helps you.

Shailendra Madda
  • 20,649
  • 15
  • 100
  • 138
  • what does this have to do –  Oct 23 '13 at 07:13
  • This will used for not getting exceptions while changing screen orientation when performing any operations.This allows to preventing the unfortunately stopping exception if you change the screen orientation – Shailendra Madda Oct 23 '13 at 09:58