-1

我想听听方向变了

但它在 SDK 4.0 中不起作用

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

到 android:configChanges="orientation|screenSize"

但它有一个错误:

清单的屏幕截图

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

清单中配置选项的屏幕截图

错误信息是

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

我的清单有什么问题?

4

1 回答 1

1

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

android:configChanges="orientation|keyboardHidden"
于 2012-11-05T08:54:38.050 回答