0

我刚刚按照 Big Nerd Ranch Android 编程书启动了我的第一个 android 应用程序,在做第一个练习时,我输入了以下 XML:

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

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="24dp"
    android:text="@string/question_text"
  />

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

    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/true_button"
    />

    <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/false_button"
    />
  </LinearLayout>
</LinearLayout>

但是,当我切换回图形视图时,它给了我一堆错误,例如:

"<LinearLayout>" does not set the required layout_width attribute:
   (1) Set to "wrap_content"
   (2) Set to "match_parent"

当我单击将其设置为其中一个时,它将我的 XML 更改为:

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

为什么它坚持我使用android1:而不接受android:任何价值观?

4

2 回答 2

2

删除这一行:

  xmlns:android1="http://schemas.android.com/apk/res/android"
于 2013-10-05T19:07:44.177 回答
1

您的 xml 命名空间声明中有错字:

xmlns:android="http://schema.android.com/apk/res/android"

应该

xmlns:android="http://schemas.android.com/apk/res/android"
于 2013-10-05T19:19:50.653 回答