欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android:screenOrientation=“portrait“ 一直警告报红

程序员文章站 2022-05-04 09:23:12
错误全文: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.Google翻译:此活动需要android:screenOrientation =“ unspecified...

错误全文:

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.

Google翻译:

此活动需要android:screenOrientation =“ unspecified”或“ fullSensor”,以便用户可以在任何方向上使用该应用程序,并在Chrome OS设备上提供出色的体验。
 

Androidstudio更新后对规则更严厉,期望开发者适配横竖屏,以便更好支持日后的Chrome OS生态。

 

解决方法:
在application标签里,加入tool:ignore="LockedOrientationActivity"这句话,manifest标签里引入xmlns:tool="http://schemas.android.com/tools",记录下。


 

本文地址:https://blog.csdn.net/dodod2012/article/details/107409795

相关标签: Android 基础