1

这些是规格:

  • 操作系统:Windows 7 专业版 x86
  • IDE:Eclipse Juno 4.2(适用于 Java 开发人员)
  • ADT:版本 20
  • 开发工具包:7

我正在创建一个 XML 布局,将 ImageView 拖到 FrameLayout 后,一切都按预期工作。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android1="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ImageView
        android1:id="@+id/imageView1"
        android1:layout_width="wrap_content"
        android1:layout_height="wrap_content"
        android1:src="@drawable/logo_splashcreen" />

</FrameLayout>

我注意到的是,它使用android1的是android.

如果我尝试向 ImageView 添加一个新参数,Ctrl+Space它会抛出错误。

正常吗?我以前从来没有发生过...

4

1 回答 1

4

尝试删除

  xmlns:android1="http://schemas.android.com/apk/res/android"

行,这似乎是一个无用的重复

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

然后,将文件中的所有 ' android1: ' 替换为 ' android: ' 字符串。

于 2012-09-10T11:51:32.190 回答