我正在youtube上的newboston android app开发的第36个教程。他让我们复制并粘贴我们的代码(因为我们应该知道现在该怎么做)。我复制并粘贴它,没有工作,所以我尝试打字全部。仍然没有工作。我的R.id不工作。我之前已经遇到过这个问题,所以我知道检查我的XML文件。一切都很疯狂。我到处都有一个错误:android:layout_width =“match_parent”。做了一些研究,我猜它已经更新为“fill_parent”改变了,现在我的XML中出现错误“错误:ERROR parising 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>
答案 0 :(得分:2)
你错过了第6行末尾的>
:
变化
android:weightSum="100"
到
android:weightSum="100">