Ashwin Deshpande
Ashwin Deshpande

Reputation: 1

How to set screen rotation in android for only one activity?

If i set rotation for the inner activity the whole screen rotates. I only want the inner activity to turn into landscape mode, not the outer activity.

This is a screenshot in which you can see 2 activities. One is the whole screen another is the camera that scans a QR code:

enter image description here

Upvotes: 0

Views: 1820

Answers (1)

vijayraj34
vijayraj34

Reputation: 2415

Add the below mentioned attribute in your Activity tag inside AndroidManifest.xml

android:screenOrientation="landscape"

Ex:

<activity android:name=".MainActivity" android:screenOrientation="landscape">

Upvotes: 1

Related Questions