keepScreenOn和合并布局

时间:2011-12-01 09:14:26

标签: android layout merge include

我使用合并布局并且keepScreenOn似乎不起作用。你能建议吗? 示例代码:

<merge xmlns:android="http://schemas.android.com/apk/res/android" 
android:keepScreenOn="true">

    <include layout="@layout/abc"/>
    <include layout="@layout/def"/>
</merge>

谢谢Ladislav。

2 个答案:

答案 0 :(得分:0)

在合并中没有名为keepScreenOn的可用属性。 android:keepScreenOn =“true”可用于布局。

创建<merge>标记是为了通过减少视图树中的级别数来优化Android布局。

keepScreenOn attribute控制视图窗口是否应在可见时保持屏幕开启。

答案 1 :(得分:0)

我找到了解决方案。 keepScreenOn应该在java代码中设置onCreate方法而不是xml。

拉​​吉斯拉夫。