gpt4 book ai didi

java - R 类未生成(API 错误?) - Android 项目

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

自从我刚刚读完《Head First Java》一书以来,这是我第一次尝试 Android 编程。我正在浏览 Notepad Tutorial当我导入项目的文件时,我的 R 类没有生成。我认为这是因为我的 xml 文件之一中出现错误。我正在使用 API 7

错误如下: 错误:不允许使用字符串类型(位于“layout_height”,值为“match_parent”)。 note_edit.xml/Notepadv2/res/layout 第 3 行 Android AAPT 问题

这是我的 xml 代码:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/title" />
<EditText android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>

<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/body" />
<EditText android:id="@+id/body" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:scrollbars="vertical" />

<Button android:id="@+id/confirm"
android:text="@string/confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>

最佳答案

您使用的是什么版本? 2.1 将不支持 match_parent 并且,如果您的项目的 res 文件夹包含任何错误意味着您的 R.java 文件将不会生成,直到您将清除 xml 文件中的错误。

因此,只需将高度更改为 fill_parent 而不是 match_parent 或将项目目标更改为 2.2

之后,做了这些事情。只需清理您的项目并运行即可。希望这对您有帮助。

关于java - R 类未生成(API 错误?) - Android 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11035299/

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