我想听取方向改变
但它在SDK 4.0中不起作用
我发现Manifest必须修改android:configChanges =“orientation”
到android:configChanges =“orientation | screenSize”
但它有一个错误:
然后我发现我在Manifest中没有“screenSize”选项
Screen Shot of config option in Manifest
,错误消息是
error: Error: String types not allowed (at 'configChanges' with value 'orientation|
ScreenSize').
我的清单出了什么问题?
答案 0 :(得分:1)
在清单中,您必须添加以下行。你输入了错误的语法,这就是显示错误的原因。
android:configChanges="orientation|keyboardHidden"