XML布局 - 条目标识符0x11a比条目计数0xb2较大

问题描述:

条目标识符0x11a比入门计数0xb2较大的

'Entry Identifier 0x11a is larger than entry count 0xb2'

这是切换到一个特定的片段时,什么是印在我的LogCat中。

This is what's printed in my LogCat when switching to a specific fragment.

我觉得它可能是与我的XML布局的资源被夸大了。我不知道是什么,但。

I think it may have something to do with my 'xml layout' resource being inflated. I am not sure what though.

我的提问

有其他人有这个问题,或者知道这意味着什么?

Has anybody else had this problem or know what it means?

感谢您的帮助

我遇到了这个问题,工作围绕其与黑客攻击。我加了一个空的风格在我styles.xml的顶部:

I've encountered this problem and worked around it with a hack. I added an empty style at the top of my styles.xml:

<style name="empty_style" />

根据对谷歌群组这个讨论发生错误

...当框架HistoryRecord在试图读取你的资源定义的主题。有没有什么毛病code [...]。事实上,如果你反复折腾你的styles.xml的顺序,通常添加几个空块上方附近,可能有助于解决这个问题   暂时。

...when HistoryRecord over in the framework is trying to read the theme defined in your resources. There isn't anything wrong with the code [...]. In fact, if you fiddle around with the ordering in your styles.xml, usually adding a few empty blocks near the top, might help get around this temporarily.

我不能说,如果上面引述的原因是真实的,但它去掉这个问题对我来说。希望这可以帮助。

I can't say if the cause quoted above is real, but it removed the issue for me. Hope this helps.