I want to show landscape xml into portrait mode. Below is sample:
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.
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">