1. Open AndroidManifest.xml
2. Inside AndroidManifest.xml find the activity of the screen that you don't want to rotate even if the user flips the phone:
<activity
android:name="com.example.MainActivity"
android:label="@string/app_name"
/>
android:name="com.example.MainActivity"
android:label="@string/app_name"
/>
3. Add this line -> android:screenOrientation="portrait"
<activity
android:name="com.example.MainActivity"
android:label="@string/app_name"
android:label="@string/app_name"
android:screenOrientation="portrait"
/>
0 comments :
Post a Comment