Tuesday, July 2, 2013

Lock the screen orientation


Modify AndroidManifest.xml file
 <activity
            android:name="com.qfa.gcm.MainActivity"
            android:label="@string/app_name" 
            android:screenOrientation="portrait" > or 
            android:screenOrientation="landscape" > 
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

No comments:

Post a Comment