gpt4 book ai didi

java - Android 开发新波士顿 *电子邮件*

转载 作者:行者123 更新时间:2023-12-02 07:35:49 25 4
gpt4 key购买 nike

我正在观看 youtube 上的 thenewboston android 应用程序开发第 36 期教程。他让我们复制并粘贴我们的代码(因为我们现在应该知道如何做)。我复制并粘贴了它,但不起作用,所以我尝试将其全部打印出来。还是没起作用。我的 R.id 无法使用。我之前已经遇到过这个问题,所以我知道要检查我的 XML 文件。那里的一切都很疯狂。我在 android:layout_width="match_parent"的任何地方都会收到错误。做了一些研究,我猜更新为“fill_parent”改变了这一点,现在我在 XML 中收到一个错误,说“错误:错误解析 XML:格式不正确(无效 token )”。我曾多次尝试重新开始。清洁工程。重新启动。三重检查我的代码。我不知道我做错了什么。请大家帮忙!我要疯了!!先谢谢了。

<?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>

最佳答案

您在第 6 行末尾错过了 >:

改变

android:weightSum="100"

android:weightSum="100">

关于java - Android 开发新波士顿 *电子邮件*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12237793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com