Which of the following attributes of the activity tag in the manifest file is used to set an activity screen to landscape orientation?
Which of the following attributes of the activity tag in the manifest file is used to set an activity screen to landscape orientation?
To set an activity screen to landscape orientation, the correct attribute in the Android manifest file is 'android:screenOrientation' set to 'landscape'. This syntax ensures the activity is displayed in landscape mode whenever it is launched.
D. android:screenOrientation="landscape"