Reputation: 1
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:
Upvotes: 0
Views: 1820
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