在我试图放入边缘之前它正在工作:导航,
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.example"
version = "1.0.0">
<name>---</name>
<preference name="disable-cursor" value="true" />
<rim:navigation mode="focus"/>
<feature id="blackberry.ui.dialog"/>
<icon src="icon.png" width="100px" height="100px" />
<gap:splash src="splash.png" />
<gap:splash src="splash.png" gap:platform="blackberry" />
<description>
A simple PhoneGap Build application.
</description>
<author href="https://example.com" email="you@example.com">
S---- Y----
</author>
</widget>
注意:短划线用于隐藏个人信息 如果有人知道什么是错的请帮助。
答案 0 :(得分:1)
您没有为xml中的rim定义任何名称空间,这就是您收到格式错误的XML错误的原因。
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:rim = "http://????"
id = "com.phonegap.example"
version = "1.0.0">
我不知道应该定义rim命名空间的URL,但我猜它会在phonegap文档中提到。