0

自从我刚读完 Head First Java 书以来,我第一次尝试 Android 编程。我正在阅读记事本教程当我为项目导入文件时,没有生成我的 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>
4

4 回答 4

2

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

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

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

于 2012-06-14T14:36:25.687 回答
0

尝试fill_parent代替match_parent

于 2012-06-14T14:33:08.067 回答
0

从 API 级别 8 开始,它支持 match_parent 低于 8 的单词将不支持。因此,将 match_parent 替换为 fill_parent

于 2012-06-14T14:39:09.710 回答
0

在他们添加的 APImatch_parent的某个点上,您正在使用 api 7 无法“理解”的东西来代替fill_parent代码中的某个位置,因此它只将其视为一个字符串,fill_parent/match_parent 就是一个很好的例子

于 2012-06-14T14:40:04.483 回答