Hey,
This is the code segment which makes your Android application just works on Portrait Mode which means you cannot let the application using on landscape mode.
<activity | |
android:name=".MainActivity" | |
android:label="@string/app_name" | |
android:configChanges="orientation" | |
android:screenOrientation="portrait" | |
>
You should put the configChanges and screenOrientation method for your every activities.
What is what?
|