Nikunj Patel
Nikunj Patel

Reputation: 22076

2.2 emulator in landscape mode

i have refer This i have same problem, i also follow defined solution but i cant get success to view horizontally Landscape mode. any idea why this thing accure?

manifest file ::

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.saneshApp"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".saneshApp" android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden" 
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
 <activity android:name=".animation_page" ></activity>
</application>
</manifest>

Update:: enter image description here

Update enter image description here

Upvotes: 2

Views: 1011

Answers (2)

Sunit Kumar Gupta
Sunit Kumar Gupta

Reputation: 1213

Use ctrl+f12 to rotate the emulator. One think use left ctrl key because right ctrl key will not work for rotate the emulator.

Upvotes: 2

Kaj
Kaj

Reputation: 10959

You can find keyboard mappings here: Emulator settings

Scroll down on that page. You change orientation by pressing CTRL+F12

Upvotes: 0

Related Questions