onConfigurationChanged不起作用

时间:2012-11-02 15:30:44

标签: android

我想听取方向改变

但它在SDK 4.0中不起作用

我发现Manifest必须修改android:configChanges =“orientation”

到android:configChanges =“orientation | screenSize”

但它有一个错误:

Screen Shot of Manifest

然后我发现我在Manifest中没有“screenSize”选项

Screen Shot of config option in Manifest

,错误消息是

error: Error: String types not allowed (at 'configChanges' with value 'orientation| ScreenSize').

我的清单出了什么问题?

1 个答案:

答案 0 :(得分:1)

在清单中,您必须添加以下行。你输入了错误的语法,这就是显示错误的原因。

android:configChanges="orientation|keyboardHidden"