本文介绍了我想知道什么错误意味着什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在控制台中知道这些错误在android(eclipse)

中的含义。



2013-08-23 14:57:48 - wifidirectdiscovery] W / ResourceType(1592):错误的XML块:标题大小83或总大小5892984大于数据大小0 [2013-08-23 14:57:48 - wifidirectdiscovery] D:\ Android系统。 Projects\workspace4 \wifidirectdiscovery\res\layo ut\fragment_chat.xml:18:错误:解析XML时出错:未绑定前缀[2013-08-23 14:57:48 - wifidirectdiscovery] D:\ Android项目\workspace4 \wifidirectdiscovery\res\men u\wi_fi_service_discovery.xml:3:错误:错误:找不到与给定名称匹配的资源(在'title'处,值为'@ string / action_settings')。 [2013-08-23 14:59:55 - wifidirectdiscovery] W / ResourceType(3288):错误的XML块:标题大小为92或总大小为6417632大于数据大小0 [2013-08-23 14:59:55 - wifidirectdiscovery] D:\ Android目录项\ workspace4 \wifidirectdiscovery\res\men u\wi_fi_service_discovery.xml:3:错误:错误:找不到与给定名称匹配的资源(在'title'处,带值'@ string / action_settings')。

I want to know what these errors means in android (eclipse )
spacially in the console.

2013-08-23 14:57:48 - wifidirectdiscovery] W/ResourceType( 1592): Bad XML block: header size 83 or total size 5892984 is larger than data size 0 [2013-08-23 14:57:48 - wifidirectdiscovery] D:\Android. Projects\workspace4\wifidirectdiscovery\res\layo ut\fragment_chat.xml:18: error: Error parsing XML: unbound prefix [2013-08-23 14:57:48 - wifidirectdiscovery] D:\Android Projects\workspace4\wifidirectdiscovery\res\men u\wi_fi_service_discovery.xml:3: error: Error: No resource found that matches the given name (at 'title' with value '@string/action_settings'). [2013-08-23 14:59:55 - wifidirectdiscovery] W/ResourceType( 3288): Bad XML block: header size 92 or total size 6417632 is larger than data size 0 [2013-08-23 14:59:55 - wifidirectdiscovery] D:\Android Projects\workspace4\wifidirectdiscovery\res\men u\wi_fi_service_discovery.xml:3: error: Error: No resource found that matches the given name (at 'title' with value '@string/action_settings').

推荐答案

Error: No resource found that matches the given name (at 'title' with value '@string/action_settings')



此行描述了最多的错误。所以在string.xml文件中检查你的资源字符串与'title'合作。


this line describes the error most.So check your resource string at string.xml file related with 'title'.


这篇关于我想知道什么错误意味着什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-11 05:56