0

我在 youtube 上第 36 期 thenewboston android 应用程序开发教程。他让我们复制并粘贴我们的代码(因为我们现在应该知道如何去做)。我复制并粘贴了它,没有用,所以我尝试将其全部输入。仍然没有工作。我的 R.id 不工作。我之前已经遇到过这个问题,所以我知道要检查我的 XML 文件。那里的一切都很疯狂。在我拥有 android:layout_width="match_parent" 的任何地方都会出现错误。做了一些研究,我想更新为“fill_parent”改变了这一点,现在我在我的 XML 中收到一个错误,说“错误:错误解析 XML:格式不正确(无效令牌)”。我已经尝试过多次开始。清洁项目。重新启动。三重检查我的代码。我不知道我做错了什么。请帮助伙计们!我要疯了!!提前致谢。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="100"
<ScrollView
    android:layout_weight="30"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    <TextView 
        android:text="Email address(es):"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:id="@+id/etEmails"
        />          

    <TextView 
        android:text="Hatfull intro"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:id="@+id/etIntro"
        />

    <TextView 
        android:text="Persons name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/etName"
        />

    <TextView 
        android:text="Stupid things this person does:"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:id="etThings"
        />

    <TextView 
        android:text="What do you want to do to this person?"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:id="@+id/etAction"
        />

    <TextView 
        android:text="Hatefull Outro"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/etOutro"
        />

    </LinearLayout>

    </ScrollView>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="40">

    <Button 
        android:text="Send"
        android:id="@+id/bSentEmail"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

    </Button>

</LinearLayout>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="30">

    <AnalogClock 
        android:id="@+id/analogClock1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

    </AnalogClock>
</LinearLayout>
</LinearLayout>
4

1 回答 1

2

你错过了>第 6 行末尾的 a:

改变

android:weightSum="100"

android:weightSum="100">
于 2012-09-02T16:55:36.483 回答