当前位置: 代码迷 >> Android >> — error: Error parsing XML: mismatched tag
  详细解决方案

— error: Error parsing XML: mismatched tag

热度:76   发布时间:2016-05-01 10:45:40.0
求助— error: Error parsing XML: mismatched tag
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<LinearLayout android:id="@+id/contentViewLayout" 
android:orientation="vertical"
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:layout_marginBottom="57dip"/>
<HorizontalScrollView
     android:id="@+id/Scroll"
     android:scrollbarSize="10dip"
     android:layout_alignParentBottom="true" 
     android:layout_width="fill_parent"
     android:background="@drawable/bottom_bar" 
        android:layout_height="40dip">
     <RadioGroup
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:orientation="horizontal"
         android:id="@+id/tabBar">
     </RadioGroup>
</HorizontalScrollView>
</RelativeLayout>
总是报: Error parsing XML: mismatched tag错误,但不知道哪里有问题,谢谢!!

------解决方案--------------------
clean一下试试
------解决方案--------------------
这个布局文件应该是没有问题的,我运行的时候一切正常,是不是别的地方出错了?或者像楼上说的,clean一下吧
------解决方案--------------------
XML文件解析错误 :标签不匹配
如果你运行程序时出现错误,LogCat中有更详细的错误,去里面看看具体是什么错误
  相关解决方案