问题
I upgraded my Android Studio to 3.6.0. Now, I get the following error in my Manifest.xml file.
Expecting 'android:screenOrientation="unspecified"' or '"fullSensor"' for this activity so the user can use the application in any orientation and provide a great experience on Chrome OS devices.
Should I convert it to "fullSensor"? How can I get rid of this problem?
Orientation of my activities is portrait. I want to keep using portrait orientation in my activities.
回答1:
This is a kind of warning to inform developers that for big screen devices it is not good to restrict the orientation. However if your application only supports portrait mode then this warning can be disabled by doing the following.
Mac: Android Studio -> Preferences
Windows: File -> Settings
Then:
- Search for "chrome"
- Uncheck "Activity is locked to an orientation"
- Apply and ok.
Unchecking step screen shot
回答2:
Given your application only supports portrait mode, you can ignore these errors by adding tools:ignore="LockedOrientationActivity" to all of your activities or just to the top level <manifest> tag which will apply to all activities.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="LockedOrientationActivity"
...
...
回答3:
If you use portrait orientation just so you don't have to use Bundle to store data, please learn how to use Bundle. It is a hacky way of not having to use Bundle, but believe me this doesn't solve all your problems. Sorry if i am wrong, but i thought that by setting screen orientation is a great workaround. It just brings more problems in long run
回答4:
Add this to the manifest tag:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="LockedOrientationActivity"
...
来源:https://stackoverflow.com/questions/60396601/expecting-androidscreenorientation-unspecified-or-fullsensor-for-this-a