1

我知道这被问了很多,但是我在文档元素问题之后解析 xml junk 时出错,然后在寻找问题后我得到 10 r can not be defined 错误,我认为这一切都是由第一个错误引起的。但即使我删除了问题段落并单击清除错误红色 x 仍然存在于空白区域。错误从底部的 textview 行开始。

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="25dp" >

<EditText
    android:id="@+id/etCommands"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="Type a Command"
    android:password="true" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="100" >

<Button
    android:id="@+id/bResults"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="20"
    android:text="Try Command" />

<ToggleButton
    android:id="@+id/tbPassword"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="80"
    android:checked="true"
    android:paddingBottom="10dp"
    android:text="ToggleButton" />
</LinearLayout>


<TextView
 android:text="invalid"
 android:id="@+id/tvResults"
 android:gravity="center"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"  />   
</LinearLayout>
4

2 回答 2

0
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" />

应该

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >

/请注意标签末尾的no 。最后/是“请立即关闭此标签”的 xml。就目前而言,您的 xml 无效,带有两个打开的 LinearLayout 标签,但关闭了 LinearLayout 3 次。

于 2012-11-26T21:35:35.717 回答
0

xml当您不提供完整文件时,很难知道问题出在哪里。您可能忘记关闭您的一件LinearLayout物品。

编辑:

只需从您的声明中删除该/字符:LinearLayout

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >
于 2012-11-26T21:37:03.440 回答