Search code examples
androidandroid-layoutandroid-toolbarandroid-orientation

Landscape layout in portrait orientation android


I want to show landscape xml into portrait mode. Below is sample:

enter image description here

i have tried making layout-land folder and adding xml into and attaching it to portrait activity but this is not working.

Please help me with some ideas or anything.


Solution

  • you have to force your Activity to show always in landscape mode in your Manifest.xml file:

     <activity
                android:name=".ui.loading.LoadingActivity"
                android:label="@string/app_name"
                android:noHistory="true"
                android:screenOrientation="landscape">