The markup in the document following the root element must be well-formed.
为什么总是提示这个错误,我检查了半天没发现。android开发小白,求帮助!<RelativeLayoutxmlns:android="http://schemas.an...
为什么总是提示这个错误,我检查了半天没发现。android开发小白,求帮助!<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="${relativePackage}.${activityClass}" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /></RelativeLayout><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="horizontal"> <Button android:id="@+id/button1" android:text="@string/mm" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
展开
1个回答
展开全部
你是不是relativelayout和Linearlayout各自写了一个闭合,下面这样
<relativelayout>
......
</relativelayout>
<Linearlayout>
.....
</Linearlayout>
这个应该不符合xml的文件格式吧,缺少一个根节点啊
要么
<relativelayout>
......
<Linearlayout>
.....
</Linearlayout>
</relativelayout>
要么,在外面加个大的
<Linearlayout>
.....
<relativelayout>
......
</relativelayout>
<Linearlayout>
.....
</Linearlayout>
</Linearlayout>
<relativelayout>
......
</relativelayout>
<Linearlayout>
.....
</Linearlayout>
这个应该不符合xml的文件格式吧,缺少一个根节点啊
要么
<relativelayout>
......
<Linearlayout>
.....
</Linearlayout>
</relativelayout>
要么,在外面加个大的
<Linearlayout>
.....
<relativelayout>
......
</relativelayout>
<Linearlayout>
.....
</Linearlayout>
</Linearlayout>
追问
原来如此,谢谢了哈
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询