我正在尝试在Eclipse上编写应用程序。在将比例类型更改为矩阵之后,出现了解析xml错误,并且它在第169行中说明但我看不到任何错误。我查了类似的问题,但没有一个类似于我知道如何修复我的问题。我查看了我的清单,似乎无法找到不匹配标签的位置。
编辑:我已经尝试过你们提供的解决方案,但问题仍然存在。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/editFormLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFF"
android:orientation="vertical" >
<ScrollView
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollView"
android:layout_weight="1"
android:padding="5px">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:src="@drawable/formprepost"
/>
<EditText
android:id="@+id/name"
android:layout_width="400dp"
android:layout_height="35dp"
android:layout_alignParentRight="true"
android:layout_below="@+id/include1"
android:layout_marginRight="90dp"
android:layout_marginTop="134dp"
android:background="#0000"
android:ellipsize="start"
android:inputType="textCapWords|textPersonName"
android:lines="1"
android:maxLines="1"
android:textAppearance="@style/TextStyle1" />
<EditText
android:id="@+id/school"
android:layout_width="400dp"
android:layout_height="35dp"
android:layout_marginTop="-8dp"
android:layout_alignLeft="@+id/name"
android:inputType="textCapWords|textPersonName"
android:background="#0000"
android:textAppearance="@style/TextStyle1"
android:ellipsize="start"
android:maxLines = "1"
android:lines = "1"
android:layout_below="@+id/name" />
<EditText
android:id="@+id/psupervisor"
android:layout_width="400dp"
android:layout_height="35dp"
android:layout_marginTop="-9dp"
android:layout_alignLeft="@+id/school"
android:inputType="textCapWords|textPersonName"
android:background="#0000"
android:textAppearance="@style/TextStyle1"
android:ellipsize="start"
android:maxLines = "1"
android:lines = "1"
android:layout_below="@+id/school" />
<EditText
android:id="@+id/pdate"
android:layout_width="200dp"
android:layout_height="35dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/psupervisor"
android:layout_marginLeft="185dp"
android:inputType="textCapWords|textPersonName"
android:textAppearance="@style/TextStyle1"
android:background="#0000"
android:ellipsize="start"
android:maxLines="1"
android:layout_marginTop="116dp"/>
<CheckBox
android:id="@+id/ptick1"
android:layout_width="540dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:button="@drawable/checkbox_selector"
android:layout_below="@+id/pdate"
android:layout_marginLeft="154dp"
android:layout_marginTop="43dp"/>
<CheckBox
android:id="@+id/ptick2"
android:layout_width="240dp"
android:layout_height="wrap_content"
android:layout_marginTop="-11dp"
android:layout_alignLeft="@+id/ptick1"
android:button="@drawable/checkbox_selector"
android:layout_below="@+id/ptick1"/>
<CheckBox
android:id="@+id/ptick3"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/ptick2"
android:layout_marginTop="-12dp"
android:button="@drawable/checkbox_selector"
android:layout_below="@+id/ptick2" />
<EditText
android:id="@+id/pcomment1"
android:layout_width="600dp"
android:layout_height="180dp"
android:layout_alignParentLeft="true"
android:layout_alignRight="@+id/tick1"
android:layout_below="@+id/ptick3"
android:layout_marginLeft="94dp"
android:layout_marginTop="23dp"
android:scrollbars="vertical"
android:gravity="top|left"
android:inputType="textCapSentences|textMultiLine"
android:textAppearance="@style/TextStyle1" />
<EditText
android:id="@+id/pcomment2"
android:layout_width="614dp"
android:layout_height="165dp"
android:layout_alignLeft="@+id/pcomment1"
android:layout_alignRight="@+id/pcomment1"
android:layout_below="@+id/pcomment1"
android:layout_marginTop="90dp"
android:scrollbars="vertical"
android:gravity="top|left"
android:inputType="textCapSentences|textMultiLine"
android:textAppearance="@style/TextStyle1" />
<ImageButton
android:id="@+id/psignature1"
android:layout_width="170dp"
android:layout_height="35dp"
android:layout_alignLeft="@+id/pdate"
android:layout_below="@+id/pcomment1"
android:layout_marginLeft="49dp"
android:background="#0000" />
<ImageButton
android:id="@+id/psignature2"
android:layout_width="170dp"
android:layout_height="30dp"
android:layout_alignLeft="@+id/psupervisor"
android:layout_below="@+id/pcomment2"
android:background="#0000" />
</RelativeLayout>
</ScrollView></RelativeLayout>
答案 0 :(得分:0)
您尚未为学校 ID和 psupervisor ID添加两个EditText
的结束标记:
<EditText
android:id="@+id/school"
android:layout_width="400dp"
android:layout_height="35dp"
android:layout_marginTop="-8dp"
android:layout_alignLeft="@+id/name"
android:inputType="textCapWords|textPersonName"
android:background="#0000"
android:textAppearance="@style/TextStyle1"
android:ellipsize="start"
android:maxLines = "1"
android:lines = "1"
android:layout_below="@+id/name" /> // Here
<EditText
android:id="@+id/psupervisor"
android:layout_width="400dp"
android:layout_height="35dp"
android:layout_marginTop="-9dp"
android:layout_alignLeft="@+id/school"
android:inputType="textCapWords|textPersonName"
android:background="#0000"
android:textAppearance="@style/TextStyle1"
android:ellipsize="start"
android:maxLines = "1"
android:lines = "1"
android:layout_below="@+id/school" /> // Here
此外,您需要使用:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/editFormLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFF"
android:orientation="vertical" > // Remove /> from here
答案 1 :(得分:0)
试试这个..
您的结束主RelativeLayout
在启动时就像/>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/editFormLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFF"
android:orientation="vertical" >
并且您还没有关闭EditText
和school
ID psupervisor
,只需提及>
结尾/>
或{ {1}}
</EditText>